From a39fe1f588dc0db5a21ea0379713004d5e705088 Mon Sep 17 00:00:00 2001 From: LuanRoger Date: Tue, 11 Oct 2022 10:48:44 -0300 Subject: [PATCH 01/11] Init sys_info_package --- internals/sys_info_getter/.gitignore | 13 +++++++ internals/sys_info_getter/CHANGELOG.md | 3 ++ .../sys_info_getter/analysis_options.yaml | 30 +++++++++++++++ internals/sys_info_getter/example/main.dart | 6 +++ .../sys_info_getter/lib/src/cmd_consts.dart | 4 ++ .../lib/src/controllers/terminal_helper.dart | 37 +++++++++++++++++++ .../lib/src/enums/get_error.dart | 3 ++ .../lib/src/models/disk_info.dart | 18 +++++++++ .../lib/src/models/system_informations.dart | 16 ++++++++ .../models/providers/powershell_provider.dart | 8 ++++ .../models/providers/terminal_provider.dart | 7 ++++ .../services/models/terminal_interface.dart | 3 ++ .../lib/src/services/powershell_service.dart | 12 ++++++ .../lib/src/utils/info_formater.dart | 24 ++++++++++++ .../sys_info_getter/lib/sys_info_getter.dart | 11 ++++++ internals/sys_info_getter/pubspec.yaml | 14 +++++++ 16 files changed, 209 insertions(+) create mode 100644 internals/sys_info_getter/.gitignore create mode 100644 internals/sys_info_getter/CHANGELOG.md create mode 100644 internals/sys_info_getter/analysis_options.yaml create mode 100644 internals/sys_info_getter/example/main.dart create mode 100644 internals/sys_info_getter/lib/src/cmd_consts.dart create mode 100644 internals/sys_info_getter/lib/src/controllers/terminal_helper.dart create mode 100644 internals/sys_info_getter/lib/src/enums/get_error.dart create mode 100644 internals/sys_info_getter/lib/src/models/disk_info.dart create mode 100644 internals/sys_info_getter/lib/src/models/system_informations.dart create mode 100644 internals/sys_info_getter/lib/src/services/models/providers/powershell_provider.dart create mode 100644 internals/sys_info_getter/lib/src/services/models/providers/terminal_provider.dart create mode 100644 internals/sys_info_getter/lib/src/services/models/terminal_interface.dart create mode 100644 internals/sys_info_getter/lib/src/services/powershell_service.dart create mode 100644 internals/sys_info_getter/lib/src/utils/info_formater.dart create mode 100644 internals/sys_info_getter/lib/sys_info_getter.dart create mode 100644 internals/sys_info_getter/pubspec.yaml diff --git a/internals/sys_info_getter/.gitignore b/internals/sys_info_getter/.gitignore new file mode 100644 index 0000000..fb4e516 --- /dev/null +++ b/internals/sys_info_getter/.gitignore @@ -0,0 +1,13 @@ +# Files and directories created by pub. +.dart_tool/ +.packages + +# Conventional directory for build outputs. +build/ + +# Omit committing pubspec.lock for library packages; see +# https://dart.dev/guides/libraries/private-files#pubspeclock. +pubspec.lock + +#Editors +.vscode/ \ No newline at end of file diff --git a/internals/sys_info_getter/CHANGELOG.md b/internals/sys_info_getter/CHANGELOG.md new file mode 100644 index 0000000..effe43c --- /dev/null +++ b/internals/sys_info_getter/CHANGELOG.md @@ -0,0 +1,3 @@ +## 1.0.0 + +- Initial version. diff --git a/internals/sys_info_getter/analysis_options.yaml b/internals/sys_info_getter/analysis_options.yaml new file mode 100644 index 0000000..dee8927 --- /dev/null +++ b/internals/sys_info_getter/analysis_options.yaml @@ -0,0 +1,30 @@ +# This file configures the static analysis results for your project (errors, +# warnings, and lints). +# +# This enables the 'recommended' set of lints from `package:lints`. +# This set helps identify many issues that may lead to problems when running +# or consuming Dart code, and enforces writing Dart using a single, idiomatic +# style and format. +# +# If you want a smaller set of lints you can change this to specify +# 'package:lints/core.yaml'. These are just the most critical lints +# (the recommended set includes the core lints). +# The core lints are also what is used by pub.dev for scoring packages. + +include: package:lints/recommended.yaml + +# Uncomment the following section to specify additional rules. + +# linter: +# rules: +# - camel_case_types + +# analyzer: +# exclude: +# - path/to/excluded/files/** + +# For more information about the core and recommended set of lints, see +# https://dart.dev/go/core-lints + +# For additional information about configuring this file, see +# https://dart.dev/guides/language/analysis-options diff --git a/internals/sys_info_getter/example/main.dart b/internals/sys_info_getter/example/main.dart new file mode 100644 index 0000000..eba3a74 --- /dev/null +++ b/internals/sys_info_getter/example/main.dart @@ -0,0 +1,6 @@ +import 'package:sys_info_getter/sys_info_getter.dart'; + +void main() async { + TerminalHelper terminalHelper = TerminalHelper(PowershellProvider()); + SystemInformations informations = await terminalHelper.update(); +} diff --git a/internals/sys_info_getter/lib/src/cmd_consts.dart b/internals/sys_info_getter/lib/src/cmd_consts.dart new file mode 100644 index 0000000..026aac6 --- /dev/null +++ b/internals/sys_info_getter/lib/src/cmd_consts.dart @@ -0,0 +1,4 @@ +class CmdConts { + static const String GET_VOLUME = + "Get-Volume | select DriveLetter, OperationalStatus, Size, SizeRemaining | fl"; +} diff --git a/internals/sys_info_getter/lib/src/controllers/terminal_helper.dart b/internals/sys_info_getter/lib/src/controllers/terminal_helper.dart new file mode 100644 index 0000000..fc15a53 --- /dev/null +++ b/internals/sys_info_getter/lib/src/controllers/terminal_helper.dart @@ -0,0 +1,37 @@ +import 'package:sys_info_getter/src/cmd_consts.dart'; +import 'package:sys_info_getter/src/models/disk_info.dart'; +import 'package:sys_info_getter/src/models/system_informations.dart'; +import 'package:sys_info_getter/src/services/models/providers/terminal_provider.dart'; +import 'package:sys_info_getter/src/services/models/terminal_interface.dart'; +import 'package:sys_info_getter/src/utils/info_formater.dart'; + +class TerminalHelper { + late final TerminalInterface _provider; + + TerminalHelper(TerminalProvider terminalProvider) { + _provider = terminalProvider.interface; + } + + Future update() async { + List? diskInfo = await _getDiskInfo(); + + return SystemInformations(diskInfo: diskInfo); + } + + Future?> _getDiskInfo() async { + List diskInfos = List.empty(growable: true); + + String output = await _provider.executeCommand(CmdConts.GET_VOLUME); + if (output.isEmpty) return null; + + List> formatedInfos = + InfoFormater.formatStringToInfoMap(output); + + for (Map info in formatedInfos) { + if (info["DriveLetter"]!.isEmpty) continue; + diskInfos.add(DiskInfo.fromMap(info)); + } + + return diskInfos; + } +} diff --git a/internals/sys_info_getter/lib/src/enums/get_error.dart b/internals/sys_info_getter/lib/src/enums/get_error.dart new file mode 100644 index 0000000..3c55a99 --- /dev/null +++ b/internals/sys_info_getter/lib/src/enums/get_error.dart @@ -0,0 +1,3 @@ +enum GetError { + GET_DISK_INFO_ERROR +} \ No newline at end of file diff --git a/internals/sys_info_getter/lib/src/models/disk_info.dart b/internals/sys_info_getter/lib/src/models/disk_info.dart new file mode 100644 index 0000000..1a90211 --- /dev/null +++ b/internals/sys_info_getter/lib/src/models/disk_info.dart @@ -0,0 +1,18 @@ +class DiskInfo { + final String driveLetter; + final String operationalStatus; + final double size; + final double sizeRemaining; + + DiskInfo( + {required this.driveLetter, + required this.operationalStatus, + required this.size, + required this.sizeRemaining}); + + factory DiskInfo.fromMap(Map map) => DiskInfo( + driveLetter: map["DriveLetter"]!, + operationalStatus: map["OperationalStatus"]!, + size: double.parse(map["Size"]!), + sizeRemaining: double.parse(map["SizeRemaining"]!)); +} diff --git a/internals/sys_info_getter/lib/src/models/system_informations.dart b/internals/sys_info_getter/lib/src/models/system_informations.dart new file mode 100644 index 0000000..a08c94d --- /dev/null +++ b/internals/sys_info_getter/lib/src/models/system_informations.dart @@ -0,0 +1,16 @@ +import 'package:sys_info_getter/src/enums/get_error.dart'; +import 'package:sys_info_getter/src/models/disk_info.dart'; + +class SystemInformations { + final List? diskInfo; + + late List _errors; + List get errors => List.from(_errors); + + SystemInformations({this.diskInfo}) { + _errors = List.empty(growable: true); + if (diskInfo == null) { + _errors.add(GetError.GET_DISK_INFO_ERROR); + } + } +} diff --git a/internals/sys_info_getter/lib/src/services/models/providers/powershell_provider.dart b/internals/sys_info_getter/lib/src/services/models/providers/powershell_provider.dart new file mode 100644 index 0000000..0569648 --- /dev/null +++ b/internals/sys_info_getter/lib/src/services/models/providers/powershell_provider.dart @@ -0,0 +1,8 @@ +import 'package:sys_info_getter/src/services/models/providers/terminal_provider.dart'; +import 'package:sys_info_getter/src/services/models/terminal_interface.dart'; +import 'package:sys_info_getter/src/services/powershell_service.dart'; + +class PowershellProvider implements TerminalProvider { + @override + TerminalInterface get interface => PowershellService(); +} diff --git a/internals/sys_info_getter/lib/src/services/models/providers/terminal_provider.dart b/internals/sys_info_getter/lib/src/services/models/providers/terminal_provider.dart new file mode 100644 index 0000000..0639a8c --- /dev/null +++ b/internals/sys_info_getter/lib/src/services/models/providers/terminal_provider.dart @@ -0,0 +1,7 @@ +import 'package:sys_info_getter/src/services/models/terminal_interface.dart'; + +abstract class TerminalProvider { + final TerminalInterface interface; + + TerminalProvider(this.interface); +} diff --git a/internals/sys_info_getter/lib/src/services/models/terminal_interface.dart b/internals/sys_info_getter/lib/src/services/models/terminal_interface.dart new file mode 100644 index 0000000..326a7f2 --- /dev/null +++ b/internals/sys_info_getter/lib/src/services/models/terminal_interface.dart @@ -0,0 +1,3 @@ +abstract class TerminalInterface { + Future executeCommand(String command); +} diff --git a/internals/sys_info_getter/lib/src/services/powershell_service.dart b/internals/sys_info_getter/lib/src/services/powershell_service.dart new file mode 100644 index 0000000..1234f87 --- /dev/null +++ b/internals/sys_info_getter/lib/src/services/powershell_service.dart @@ -0,0 +1,12 @@ +import 'dart:io'; + +import 'package:sys_info_getter/src/services/models/terminal_interface.dart'; + +class PowershellService implements TerminalInterface { + @override + Future executeCommand(String command) async { + final powershell = + await Process.run("Powershell.exe", [command], runInShell: true); + return powershell.exitCode == 0 ? powershell.stdout : ""; + } +} diff --git a/internals/sys_info_getter/lib/src/utils/info_formater.dart b/internals/sys_info_getter/lib/src/utils/info_formater.dart new file mode 100644 index 0000000..5da7f76 --- /dev/null +++ b/internals/sys_info_getter/lib/src/utils/info_formater.dart @@ -0,0 +1,24 @@ +class InfoFormater { + static List> formatStringToInfoMap(String rawInfo, + {String separator = ":"}) { + List> infos = List.empty(growable: true); + List diskInfos = rawInfo.trim().split("\n"); + + Map buffer = {}; + for (String lineInfo in diskInfos) { + if (lineInfo.trim().isEmpty) { + infos.add(Map.from(buffer)); + buffer.clear(); + continue; + } + + List keyValue = lineInfo.split(separator); + String key = keyValue[0].trim(); + String value = keyValue[1].trim(); + buffer[key] = value; + } + infos.add(buffer); + + return infos; + } +} diff --git a/internals/sys_info_getter/lib/sys_info_getter.dart b/internals/sys_info_getter/lib/sys_info_getter.dart new file mode 100644 index 0000000..e508a40 --- /dev/null +++ b/internals/sys_info_getter/lib/sys_info_getter.dart @@ -0,0 +1,11 @@ +library sys_info_getter; + +export 'src/controllers/terminal_helper.dart'; + +export 'src/enums/get_error.dart'; + +export 'src/models/disk_info.dart'; +export 'src/models/system_informations.dart'; + +export 'src/services/models/providers/powershell_provider.dart'; +export 'src/services/models/providers/terminal_provider.dart'; diff --git a/internals/sys_info_getter/pubspec.yaml b/internals/sys_info_getter/pubspec.yaml new file mode 100644 index 0000000..c42724c --- /dev/null +++ b/internals/sys_info_getter/pubspec.yaml @@ -0,0 +1,14 @@ +name: sys_info_getter +description: A starting point for Dart libraries or applications. +version: 1.0.0 +# homepage: https://www.example.com + +environment: + sdk: '>=2.18.1 <3.0.0' + +# dependencies: +# path: ^1.8.0 + +dev_dependencies: + lints: ^2.0.0 + test: ^1.16.0 From cdf16add30d964140665a2e64a4f428160de465f Mon Sep 17 00:00:00 2001 From: LuanRoger Date: Wed, 12 Oct 2022 18:47:34 -0300 Subject: [PATCH 02/11] Add sys_info_getter to xbox_launcher --- internals/sys_info_getter/pubspec.yaml | 1 - pubspec.lock | 25 ++++++++----------------- pubspec.yaml | 4 ++-- 3 files changed, 10 insertions(+), 20 deletions(-) diff --git a/internals/sys_info_getter/pubspec.yaml b/internals/sys_info_getter/pubspec.yaml index c42724c..3521f98 100644 --- a/internals/sys_info_getter/pubspec.yaml +++ b/internals/sys_info_getter/pubspec.yaml @@ -1,7 +1,6 @@ name: sys_info_getter description: A starting point for Dart libraries or applications. version: 1.0.0 -# homepage: https://www.example.com environment: sdk: '>=2.18.1 <3.0.0' diff --git a/pubspec.lock b/pubspec.lock index b9c97a0..84e3747 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -43,13 +43,6 @@ packages: url: "https://pub.dartlang.org" source: hosted version: "1.16.0" - equatable: - dependency: transitive - description: - name: equatable - url: "https://pub.dartlang.org" - source: hosted - version: "2.0.5" fake_async: dependency: transitive description: @@ -397,6 +390,13 @@ packages: url: "https://pub.dartlang.org" source: hosted version: "1.1.1" + sys_info_getter: + dependency: "direct main" + description: + path: "internals/sys_info_getter" + relative: true + source: path + version: "1.0.0" term_glyph: dependency: transitive description: @@ -448,15 +448,6 @@ packages: url: "https://pub.dartlang.org" source: hosted version: "0.2.7" - windows_system_info: - dependency: "direct main" - description: - path: "." - ref: HEAD - resolved-ref: c7c073f17b4ed155fe51cc3bbd7286dcb53a822d - url: "https://github.com/Abdulazeezvp/windows_system_info.git" - source: git - version: "0.0.1" xdg_directories: dependency: transitive description: @@ -479,5 +470,5 @@ packages: source: hosted version: "6.1.0" sdks: - dart: ">=2.17.6 <3.0.0" + dart: ">=2.18.1 <3.0.0" flutter: ">=3.0.0" diff --git a/pubspec.yaml b/pubspec.yaml index 8b8e48e..098d2a8 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -23,8 +23,8 @@ dependencies: carousel_slider: ^4.1.1 path_provider: ^2.0.11 flutter_svg: ^1.1.5 - windows_system_info: - git: https://github.com/Abdulazeezvp/windows_system_info.git + sys_info_getter: + path: ./internals/sys_info_getter/ dev_dependencies: flutter_test: From d286bbd857b02068423c47f873930a60c001296f Mon Sep 17 00:00:00 2001 From: LuanRoger Date: Wed, 12 Oct 2022 18:48:26 -0300 Subject: [PATCH 03/11] Refactoring --- lib/pages/home_page.dart | 3 +-- .../widgets/{ => infos_provider}/clock_time.dart | 0 .../navigation_bar_profile_info.dart | 0 lib/shared/widgets/navigations/navigation_bar.dart | 2 +- .../placeholder_messages/no_groups_message.dart | 12 +++--------- .../volumes_error_message.dart | 14 ++++++++++++++ 6 files changed, 19 insertions(+), 12 deletions(-) rename lib/shared/widgets/{ => infos_provider}/clock_time.dart (100%) rename lib/shared/widgets/{ => infos_provider}/navigation_bar_profile_info.dart (100%) create mode 100644 lib/shared/widgets/placeholder_messages/volumes_error_message.dart diff --git a/lib/pages/home_page.dart b/lib/pages/home_page.dart index 4a37ed7..8ecc8f6 100644 --- a/lib/pages/home_page.dart +++ b/lib/pages/home_page.dart @@ -1,11 +1,10 @@ import 'package:fluent_ui/fluent_ui.dart'; import 'package:provider/provider.dart'; -import 'package:xbox_launcher/models/controller_keyboard_pair.dart'; import 'package:xbox_launcher/models/shortcut_models/shortcut_option.dart'; import 'package:xbox_launcher/providers/profile_provider.dart'; import 'package:xbox_launcher/routes/app_routes.dart'; import 'package:xbox_launcher/shared/widgets/background.dart'; -import 'package:xbox_launcher/shared/widgets/clock_time.dart'; +import 'package:xbox_launcher/shared/widgets/infos_provider/clock_time.dart'; import 'package:xbox_launcher/shared/widgets/models/xbox_page_stateless.dart'; import 'package:xbox_launcher/shared/widgets/placeholder_messages/wellcoming_message.dart'; import 'package:xbox_launcher/shared/widgets/buttons/system_banner_button.dart'; diff --git a/lib/shared/widgets/clock_time.dart b/lib/shared/widgets/infos_provider/clock_time.dart similarity index 100% rename from lib/shared/widgets/clock_time.dart rename to lib/shared/widgets/infos_provider/clock_time.dart diff --git a/lib/shared/widgets/navigation_bar_profile_info.dart b/lib/shared/widgets/infos_provider/navigation_bar_profile_info.dart similarity index 100% rename from lib/shared/widgets/navigation_bar_profile_info.dart rename to lib/shared/widgets/infos_provider/navigation_bar_profile_info.dart diff --git a/lib/shared/widgets/navigations/navigation_bar.dart b/lib/shared/widgets/navigations/navigation_bar.dart index 4bdeec2..6ef7468 100644 --- a/lib/shared/widgets/navigations/navigation_bar.dart +++ b/lib/shared/widgets/navigations/navigation_bar.dart @@ -1,7 +1,7 @@ import 'package:fluent_ui/fluent_ui.dart'; import 'package:provider/provider.dart'; import 'package:xbox_launcher/providers/profile_provider.dart'; -import 'package:xbox_launcher/shared/widgets/navigation_bar_profile_info.dart'; +import 'package:xbox_launcher/shared/widgets/infos_provider/navigation_bar_profile_info.dart'; import 'package:xbox_launcher/shared/widgets/navigations/models/navigation_base.dart'; class NavigationBar extends StatefulWidget implements NavigationBase { diff --git a/lib/shared/widgets/placeholder_messages/no_groups_message.dart b/lib/shared/widgets/placeholder_messages/no_groups_message.dart index d166d51..3b5dc09 100644 --- a/lib/shared/widgets/placeholder_messages/no_groups_message.dart +++ b/lib/shared/widgets/placeholder_messages/no_groups_message.dart @@ -6,15 +6,9 @@ class NoGroupsMessage extends StatelessWidget { @override Widget build(BuildContext context) { - return Column( - mainAxisAlignment: MainAxisAlignment.start, - crossAxisAlignment: CrossAxisAlignment.start, - children: const [ - Text( - "No Groups created.", - style: AppTextStyle.PLACEHOLDER_MESSAGE_TITLE, - ) - ], + return const Text( + "No Groups created.", + style: AppTextStyle.PLACEHOLDER_MESSAGE_TITLE, ); } } diff --git a/lib/shared/widgets/placeholder_messages/volumes_error_message.dart b/lib/shared/widgets/placeholder_messages/volumes_error_message.dart new file mode 100644 index 0000000..99b9aa8 --- /dev/null +++ b/lib/shared/widgets/placeholder_messages/volumes_error_message.dart @@ -0,0 +1,14 @@ +import 'package:fluent_ui/fluent_ui.dart'; +import 'package:xbox_launcher/shared/app_text_style.dart'; + +class VolumesErrorMessage extends StatelessWidget { + const VolumesErrorMessage({super.key}); + + @override + Widget build(BuildContext context) { + return const Text( + "Was no possible to get the volumes informations.", + style: AppTextStyle.PLACEHOLDER_MESSAGE_TITLE, + ); + } +} From c42aed4030ab5ffa7c0ac0145a1dd0a4efcaa9fb Mon Sep 17 00:00:00 2001 From: LuanRoger Date: Wed, 12 Oct 2022 18:48:55 -0300 Subject: [PATCH 04/11] Create VolumeInfoViewer --- lib/controllers/system_info_getter.dart | 11 +++ .../sections/manage_section.dart | 21 +++++- lib/shared/app_text_style.dart | 8 ++- .../volume_info/volume_info_list.dart | 21 ++++++ .../volume_info/volume_info_viewer.dart | 68 +++++++++++++++++++ lib/utils/disk_size_formatter.dart | 13 ++++ 6 files changed, 139 insertions(+), 3 deletions(-) create mode 100644 lib/controllers/system_info_getter.dart create mode 100644 lib/shared/widgets/infos_provider/volume_info/volume_info_list.dart create mode 100644 lib/shared/widgets/infos_provider/volume_info/volume_info_viewer.dart create mode 100644 lib/utils/disk_size_formatter.dart diff --git a/lib/controllers/system_info_getter.dart b/lib/controllers/system_info_getter.dart new file mode 100644 index 0000000..35f73e8 --- /dev/null +++ b/lib/controllers/system_info_getter.dart @@ -0,0 +1,11 @@ +import 'package:sys_info_getter/sys_info_getter.dart'; + +class SystemInfoGetter { + final TerminalHelper _terminalHelper = TerminalHelper(PowershellProvider()); + + Future _updateInfos() async => + await _terminalHelper.update(); + + Future?> getDisksInfos() async => + (await _updateInfos()).diskInfo; +} diff --git a/lib/pages/my_library_page/sections/manage_section.dart b/lib/pages/my_library_page/sections/manage_section.dart index 6f58523..0675007 100644 --- a/lib/pages/my_library_page/sections/manage_section.dart +++ b/lib/pages/my_library_page/sections/manage_section.dart @@ -1,14 +1,22 @@ import 'package:fluent_ui/fluent_ui.dart'; +import 'package:sys_info_getter/sys_info_getter.dart'; +import 'package:xbox_launcher/controllers/system_info_getter.dart'; import 'package:xbox_launcher/shared/app_text_style.dart'; import 'package:xbox_launcher/shared/widgets/buttons/button_grid.dart'; import 'package:xbox_launcher/shared/widgets/buttons/icon_text_button.dart'; import 'package:xbox_launcher/shared/widgets/dialogs/context_menu/context_menu.dart'; import 'package:xbox_launcher/shared/widgets/dialogs/context_menu/context_menu_item.dart'; +import 'package:xbox_launcher/shared/widgets/infos_provider/volume_info/volume_info_list.dart'; import 'package:xbox_launcher/shared/widgets/navigations/navigation_section_stateless.dart'; class ManageSection extends NavigationSectionStateless { const ManageSection({super.key}) : super("Manage"); + Future?> getDiskInfos() { + SystemInfoGetter infoGetter = SystemInfoGetter(); + return infoGetter.getDisksInfos(); + } + @override List? titleActions(BuildContext context) => null; @@ -32,7 +40,18 @@ class ManageSection extends NavigationSectionStateless { }), ), const Text("Device info", style: AppTextStyle.MY_APPS_SECTIONS_TILE), - const Text("TODO") + Flexible( + child: FutureBuilder?>( + future: getDiskInfos(), + builder: (context, snapshot) { + switch (snapshot.connectionState) { + case ConnectionState.waiting: + return const ProgressRing(); + default: + return VolumeInfoList(diskInfos: snapshot.data!); + } + }, + )), ]; } } diff --git a/lib/shared/app_text_style.dart b/lib/shared/app_text_style.dart index 6d96a78..3a22fe7 100644 --- a/lib/shared/app_text_style.dart +++ b/lib/shared/app_text_style.dart @@ -50,6 +50,10 @@ class AppTextStyle { static const CONTEXT_MENU_TITLE = TextStyle(fontWeight: FontWeight.w600, fontSize: 22); - static const APPS_GROUP_TITLE = - TextStyle(fontSize: 20); + static const APPS_GROUP_TITLE = TextStyle(fontSize: 20); + + static const VOLUME_INFOS = + TextStyle(fontSize: 16, fontWeight: FontWeight.w100); + static const VOLUME_PERCENTAGE = + TextStyle(fontSize: 18, fontWeight: FontWeight.w300); } diff --git a/lib/shared/widgets/infos_provider/volume_info/volume_info_list.dart b/lib/shared/widgets/infos_provider/volume_info/volume_info_list.dart new file mode 100644 index 0000000..52f684c --- /dev/null +++ b/lib/shared/widgets/infos_provider/volume_info/volume_info_list.dart @@ -0,0 +1,21 @@ +import 'package:fluent_ui/fluent_ui.dart'; +import 'package:sys_info_getter/sys_info_getter.dart'; +import 'package:xbox_launcher/shared/widgets/infos_provider/volume_info/volume_info_viewer.dart'; + +class VolumeInfoList extends StatelessWidget { + final List diskInfos; + + const VolumeInfoList({super.key, required this.diskInfos}); + + List createViwers() => + diskInfos.map((infos) => VolumeInfoViwer(infos)).toList(); + + @override + Widget build(BuildContext context) { + return ListView( + shrinkWrap: true, + scrollDirection: Axis.horizontal, + children: createViwers(), + ); + } +} diff --git a/lib/shared/widgets/infos_provider/volume_info/volume_info_viewer.dart b/lib/shared/widgets/infos_provider/volume_info/volume_info_viewer.dart new file mode 100644 index 0000000..2aa4975 --- /dev/null +++ b/lib/shared/widgets/infos_provider/volume_info/volume_info_viewer.dart @@ -0,0 +1,68 @@ +import 'package:fluent_ui/fluent_ui.dart'; +import 'package:sys_info_getter/sys_info_getter.dart'; +import 'package:xbox_launcher/shared/app_text_style.dart'; +import 'package:xbox_launcher/utils/disk_size_formatter.dart'; + +class VolumeInfoViwer extends StatelessWidget { + final DiskInfo diskInfo; + + const VolumeInfoViwer(this.diskInfo, {super.key}); + + String get formatedBytes => + DiskSizeFormatter.formatBytes(diskInfo.sizeRemaining, 1); + double get percentageRemaining => + (diskInfo.sizeRemaining * 100) / diskInfo.size; + + @override + Widget build(BuildContext context) { + return SizedBox( + height: 30, + width: 250, + child: OutlinedButton( + style: ButtonStyle(border: ButtonState.all(BorderSide.none)), + onPressed: () {}, // This is just for focus. + child: Padding( + padding: const EdgeInsets.all(5.0), + child: Row( + mainAxisAlignment: MainAxisAlignment.spaceBetween, + crossAxisAlignment: CrossAxisAlignment.center, + children: [ + Expanded( + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Text( + "Volume: ${diskInfo.driveLetter}\n$formatedBytes free", + style: AppTextStyle.VOLUME_INFOS, + textAlign: TextAlign.left, + ), + ], + ), + ), + Expanded( + child: Stack( + alignment: Alignment.center, + fit: StackFit.expand, + children: [ + ProgressRing( + value: percentageRemaining, + backgroundColor: Colors.green, + activeColor: Colors.green, + strokeWidth: 3, + ), + Center( + child: Text( + percentageRemaining.toStringAsFixed(1) + "%", + style: AppTextStyle.VOLUME_PERCENTAGE, + )) + ], + ), + ) + ], + ), + ), + ), + ); + } +} diff --git a/lib/utils/disk_size_formatter.dart b/lib/utils/disk_size_formatter.dart new file mode 100644 index 0000000..f9e891c --- /dev/null +++ b/lib/utils/disk_size_formatter.dart @@ -0,0 +1,13 @@ +import 'dart:math'; + +class DiskSizeFormatter { + //Gist link: https://gist.github.com/zzpmaster/ec51afdbbfa5b2bf6ced13374ff891d9 + static String formatBytes(double bytes, int decimals) { + if (bytes <= 0) return "0 B"; + const suffixes = ["B", "KB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB"]; + var i = (log(bytes) / log(1024)).floor(); + return ((bytes / pow(1024, i)).toStringAsFixed(decimals)) + + ' ' + + suffixes[i]; + } +} From 20ab17f356e699ebaef9707168d27e49cff38210 Mon Sep 17 00:00:00 2001 From: LuanRoger Date: Thu, 13 Oct 2022 09:32:06 -0300 Subject: [PATCH 05/11] Implement TileSize for MyLibraryPage --- lib/models/profile_model.dart | 8 + .../profile_preview_elements_preferences.dart | 14 ++ .../sections/full_library_section.dart | 66 +++---- .../sections/manage_section.dart | 21 ++- .../sections/my_apps_section.dart | 30 +-- .../sections/my_games_section.dart | 177 +++++++++--------- lib/providers/profile_provider.dart | 10 + lib/shared/widgets/tiles/tile_grid.dart | 32 ++++ 8 files changed, 218 insertions(+), 140 deletions(-) create mode 100644 lib/models/profile_preview_elements_preferences.dart diff --git a/lib/models/profile_model.dart b/lib/models/profile_model.dart index 1be78d7..a37bb27 100644 --- a/lib/models/profile_model.dart +++ b/lib/models/profile_model.dart @@ -1,6 +1,7 @@ import 'package:xbox_launcher/models/apps_historic.dart'; import 'package:xbox_launcher/models/background_profile_preferences.dart'; import 'package:xbox_launcher/models/profile_apps_groups.dart'; +import 'package:xbox_launcher/models/profile_preview_elements_preferences.dart'; import 'package:xbox_launcher/models/theme_data_profile.dart'; import 'package:xbox_launcher/models/video_preferences.dart'; import 'package:xbox_launcher/shared/app_consts.dart'; @@ -13,6 +14,7 @@ class ProfileModel { String? xcloudGamesJsonPath; String? profileImagePath; + late ProfilePreviewElementsPreferences previewElementsPreferences; late AppsHistoric appsHistoric; late ProfileAppsGroups appsGroups; late BackgroundProfilePreferences backgroundPreferences; @@ -27,6 +29,9 @@ class ProfileModel { profileModel.preferedServer = json["preferedServer"]; profileModel.xcloudGamesJsonPath = json["xcloudGamesJsonPath"]; profileModel.profileImagePath = json["profileImagePath"]; + profileModel.previewElementsPreferences = + ProfilePreviewElementsPreferences.fromJson( + json["previewElementsPreferences"]); profileModel.appsHistoric = AppsHistoric.fromJson(json["appsHistoric"]); profileModel.appsGroups = ProfileAppsGroups.fromJson(json["appsGroups"]); profileModel.backgroundPreferences = @@ -45,6 +50,8 @@ class ProfileModel { defaultProfile.preferedServer = XCloudSupportedServers.values[0].countryCode; + defaultProfile.previewElementsPreferences = + ProfilePreviewElementsPreferences(); defaultProfile.appsHistoric = AppsHistoric(); defaultProfile.appsGroups = ProfileAppsGroups(groups: List.empty(growable: true)); @@ -62,6 +69,7 @@ class ProfileModel { "preferedServer": preferedServer, "xcloudGamesJsonPath": xcloudGamesJsonPath, "profileImagePath": profileImagePath, + "previewElementsPreferences": previewElementsPreferences.toJson(), "appsHistoric": appsHistoric.toJson(), "appsGroups": appsGroups.toJson(), "backgroundPreferences": backgroundPreferences.toJson(), diff --git a/lib/models/profile_preview_elements_preferences.dart b/lib/models/profile_preview_elements_preferences.dart new file mode 100644 index 0000000..652f4c5 --- /dev/null +++ b/lib/models/profile_preview_elements_preferences.dart @@ -0,0 +1,14 @@ +import 'package:xbox_launcher/shared/enums/tile_size.dart'; + +class ProfilePreviewElementsPreferences { + TileSize myLibraryTileSize; + + ProfilePreviewElementsPreferences({this.myLibraryTileSize = TileSize.MEDIUM}); + factory ProfilePreviewElementsPreferences.fromJson( + Map json) => + ProfilePreviewElementsPreferences( + myLibraryTileSize: TileSize.values[json["myLibraryTileSize"]]); + + Map toJson() => + {"myLibraryTileSize": myLibraryTileSize.index}; +} diff --git a/lib/pages/my_library_page/sections/full_library_section.dart b/lib/pages/my_library_page/sections/full_library_section.dart index ccbd8eb..721d2d2 100644 --- a/lib/pages/my_library_page/sections/full_library_section.dart +++ b/lib/pages/my_library_page/sections/full_library_section.dart @@ -13,7 +13,7 @@ import 'package:xbox_launcher/shared/widgets/utils/generators/widget_gen.dart'; import 'package:xbox_launcher/utils/loaders/xcloud_json_db_loader.dart'; class FullLibrarySection extends NavigationSectionStateless { - late final List library; + late List library; final TextEditingController searchController = TextEditingController(); List? searchResult; @@ -71,40 +71,36 @@ class FullLibrarySection extends NavigationSectionStateless { }, ), ]; - @override - List? midActions(BuildContext context) => null; @override - List columnItems(BuildContext context) => [ - Expanded( - flex: 10, - child: StatefulBuilder( - builder: (_, setState) { - _reloadTilesGrid = setState; - return FutureBuilder( - future: _createListFullLibrary(context), - builder: (_, snapshot) { - switch (snapshot.connectionState) { - case ConnectionState.waiting: - return const ProgressRing(); - default: - return TileGrid.count( - gridDelegate: - const SliverGridDelegateWithFixedCrossAxisCount( - crossAxisCount: 5, - crossAxisSpacing: 10, - mainAxisSpacing: 10, - ), - tiles: WidgetGen.generateByModel( - searchResult ?? library, - TileGeneratorOption([TileSize.MEDIUM], - context: context)), - scrollDirection: Axis.vertical, - ); - } - }, - ); - }, - )) - ]; + List columnItems(BuildContext context) { + final TileSize tileSize = context.read().myLibraryTileSize; + + return [ + Expanded( + flex: 10, + child: StatefulBuilder( + builder: (_, setState) { + _reloadTilesGrid = setState; + return FutureBuilder( + future: _createListFullLibrary(context), + builder: (_, snapshot) { + switch (snapshot.connectionState) { + case ConnectionState.waiting: + return const ProgressRing(); + default: + return TileGrid.tileSize( + tileSize: tileSize, + tiles: WidgetGen.generateByModel( + searchResult ?? library, + TileGeneratorOption([tileSize], context: context)), + scrollDirection: Axis.vertical, + ); + } + }, + ); + }, + )) + ]; + } } diff --git a/lib/pages/my_library_page/sections/manage_section.dart b/lib/pages/my_library_page/sections/manage_section.dart index 0675007..e9a6b30 100644 --- a/lib/pages/my_library_page/sections/manage_section.dart +++ b/lib/pages/my_library_page/sections/manage_section.dart @@ -1,7 +1,10 @@ import 'package:fluent_ui/fluent_ui.dart'; +import 'package:provider/provider.dart'; import 'package:sys_info_getter/sys_info_getter.dart'; import 'package:xbox_launcher/controllers/system_info_getter.dart'; +import 'package:xbox_launcher/providers/profile_provider.dart'; import 'package:xbox_launcher/shared/app_text_style.dart'; +import 'package:xbox_launcher/shared/enums/tile_size.dart'; import 'package:xbox_launcher/shared/widgets/buttons/button_grid.dart'; import 'package:xbox_launcher/shared/widgets/buttons/icon_text_button.dart'; import 'package:xbox_launcher/shared/widgets/dialogs/context_menu/context_menu.dart'; @@ -31,9 +34,21 @@ class ManageSection extends NavigationSectionStateless { icon: FluentIcons.size_legacy, onPressed: () { ContextMenu("Tiles sizes", contextItems: [ - ContextMenuItem("Small", onPressed: () {}), - ContextMenuItem("Medium", onPressed: () {}), - ContextMenuItem("Big", onPressed: () {}) + ContextMenuItem("Small", onPressed: () { + Provider.of(context, listen: false) + .myLibraryTileSize = TileSize.SMALL; + Navigator.pop(context); + }), + ContextMenuItem("Medium", onPressed: () { + Provider.of(context, listen: false) + .myLibraryTileSize = TileSize.MEDIUM; + Navigator.pop(context); + }), + ContextMenuItem("Big", onPressed: () { + Provider.of(context, listen: false) + .myLibraryTileSize = TileSize.BIG; + Navigator.pop(context); + }) ]).show(context); }) ] diff --git a/lib/pages/my_library_page/sections/my_apps_section.dart b/lib/pages/my_library_page/sections/my_apps_section.dart index 041862c..05b9140 100644 --- a/lib/pages/my_library_page/sections/my_apps_section.dart +++ b/lib/pages/my_library_page/sections/my_apps_section.dart @@ -1,5 +1,7 @@ import 'package:fluent_ui/fluent_ui.dart'; +import 'package:provider/provider.dart'; import 'package:xbox_launcher/controllers/system_app_controller.dart'; +import 'package:xbox_launcher/providers/profile_provider.dart'; import 'package:xbox_launcher/shared/enums/tile_size.dart'; import 'package:xbox_launcher/shared/widgets/navigations/navigation_section_stateless.dart'; import 'package:xbox_launcher/shared/widgets/tiles/tile_grid.dart'; @@ -13,18 +15,18 @@ class MyAppsSection extends NavigationSectionStateless { List? titleActions(BuildContext context) => null; @override - List columnItems(BuildContext context) => [ - Expanded( - flex: 7, - child: TileGrid.count( - gridDelegate: const SliverGridDelegateWithFixedCrossAxisCount( - crossAxisCount: 5, - crossAxisSpacing: 10, - mainAxisSpacing: 10, - ), - tiles: WidgetGen.generateByModel(SystemAppController.systemApps, - TileGeneratorOption([TileSize.MEDIUM], context: context)), - scrollDirection: Axis.vertical, - )) - ]; + List columnItems(BuildContext context) { + final TileSize tileSize = context.read().myLibraryTileSize; + + return [ + Expanded( + flex: 7, + child: TileGrid.tileSize( + tileSize: tileSize, + tiles: WidgetGen.generateByModel(SystemAppController.systemApps, + TileGeneratorOption([tileSize], context: context)), + scrollDirection: Axis.vertical, + )) + ]; + } } diff --git a/lib/pages/my_library_page/sections/my_games_section.dart b/lib/pages/my_library_page/sections/my_games_section.dart index f1ce26e..b8a4d16 100644 --- a/lib/pages/my_library_page/sections/my_games_section.dart +++ b/lib/pages/my_library_page/sections/my_games_section.dart @@ -1,3 +1,5 @@ +// ignore_for_file: curly_braces_in_flow_control_structures + import 'package:fluent_ui/fluent_ui.dart'; import 'package:provider/provider.dart'; import 'package:xbox_launcher/models/app_models/game_model.dart'; @@ -131,94 +133,93 @@ class MyGamesSection extends NavigationSectionStateless { ]; @override - List columnItems(BuildContext context) => [ - Expanded( - flex: 10, - child: FutureBuilder( - future: readXCloudGames(context), - builder: (_, snapshot) { - switch (snapshot.connectionState) { - case ConnectionState.waiting: - return const ProgressRing(); - default: - if (snapshot.hasData && !(snapshot.data as bool) || - gamesList.isEmpty) - return const XCloudFileUnavailableMessage(); - - return Column( - children: [ - Flexible( - child: ChipsRow( - chipsList ?? List.empty(), - onCheckChange: (isSelected, value) { - if (!isSelected) filterByGenre(null); - - filterByGenre(value as String); - }, - )), - const Spacer(), - Expanded( - flex: 13, - child: StatefulBuilder( - builder: (context, setState) { - _reloadTileGrid = setState; - return Column( - children: [ - Expanded( - flex: 2, - child: Row( - mainAxisAlignment: - MainAxisAlignment.spaceBetween, - crossAxisAlignment: - CrossAxisAlignment.start, - children: [ - ComboBox( - [ - ComboboxItem( - child: const Text("Sort: A to Z"), - value: SortOptions.ATOZ.index, - ), - ComboboxItem( - child: const Text("Release date"), - value: SortOptions - .RELEASE_DATE.index, - ) - ], - onChange: (sortOptionsIndex) => - sortGameList(SortOptions - .values[sortOptionsIndex]), - width: 270.0, - height: double.infinity, - ) - ], - ), + List columnItems(BuildContext context) { + final TileSize tileSize = context.read().myLibraryTileSize; + + return [ + Expanded( + flex: 10, + child: FutureBuilder( + future: readXCloudGames(context), + builder: (_, snapshot) { + switch (snapshot.connectionState) { + case ConnectionState.waiting: + return const ProgressRing(); + default: + if (snapshot.hasData && !(snapshot.data as bool) || + gamesList.isEmpty) + return const XCloudFileUnavailableMessage(); + + return Column( + children: [ + Flexible( + child: ChipsRow( + chipsList ?? List.empty(), + onCheckChange: (isSelected, value) { + if (!isSelected) filterByGenre(null); + + filterByGenre(value as String); + }, + )), + const Spacer(), + Expanded( + flex: 13, + child: StatefulBuilder( + builder: (context, setState) { + _reloadTileGrid = setState; + return Column( + children: [ + Expanded( + flex: 2, + child: Row( + mainAxisAlignment: + MainAxisAlignment.spaceBetween, + crossAxisAlignment: + CrossAxisAlignment.start, + children: [ + ComboBox( + [ + ComboboxItem( + child: const Text("Sort: A to Z"), + value: SortOptions.ATOZ.index, + ), + ComboboxItem( + child: const Text("Release date"), + value: + SortOptions.RELEASE_DATE.index, + ) + ], + onChange: (sortOptionsIndex) => + sortGameList(SortOptions + .values[sortOptionsIndex]), + width: 270.0, + height: double.infinity, + ) + ], + ), + ), + const Spacer(), + Expanded( + flex: 20, + child: TileGrid.tileSize( + tileSize: tileSize, + tiles: WidgetGen.generateByModel( + gamesSearchResult ?? gamesList, + TileGeneratorOption([tileSize], + context: context)), + scrollDirection: Axis.vertical, ), - const Spacer(), - Expanded( - flex: 20, - child: TileGrid.count( - gridDelegate: - const SliverGridDelegateWithFixedCrossAxisCount( - crossAxisCount: 6, - crossAxisSpacing: 10, - mainAxisSpacing: 10, - ), - tiles: WidgetGen.generateByModel( - gamesSearchResult ?? gamesList, - TileGeneratorOption([TileSize.MEDIUM], - context: context)), - scrollDirection: Axis.vertical, - ), - ) - ], - ); - }, - ), + ) + ], + ); + }, ), - ], - ); - } - }, - )), - ]; + ), + ], + ); + } + }, + )), + ]; + } } diff --git a/lib/providers/profile_provider.dart b/lib/providers/profile_provider.dart index 53104aa..efe5b85 100644 --- a/lib/providers/profile_provider.dart +++ b/lib/providers/profile_provider.dart @@ -4,6 +4,7 @@ import 'package:xbox_launcher/models/app_models/app_model.dart'; import 'package:xbox_launcher/models/apps_group.dart'; import 'package:xbox_launcher/models/profile_model.dart'; import 'package:xbox_launcher/models/profile_update_info.dart'; +import 'package:xbox_launcher/shared/enums/tile_size.dart'; import 'package:xbox_launcher/utils/loaders/profile_loader.dart'; class ProfileProvider extends ChangeNotifier { @@ -82,6 +83,15 @@ class ProfileProvider extends ChangeNotifier { saveProfile(); } + TileSize get myLibraryTileSize => + _currentProfile.previewElementsPreferences.myLibraryTileSize; + set myLibraryTileSize(TileSize tileSize) { + _currentProfile.previewElementsPreferences.myLibraryTileSize = tileSize; + + saveProfile(); + notifyListeners(); + } + List get lastApps => _currentProfile.appsHistoric.lastApps; void addAppToHistory(AppModel appModel) { _currentProfile.appsHistoric.addApp(appModel); diff --git a/lib/shared/widgets/tiles/tile_grid.dart b/lib/shared/widgets/tiles/tile_grid.dart index 2373674..4d78227 100644 --- a/lib/shared/widgets/tiles/tile_grid.dart +++ b/lib/shared/widgets/tiles/tile_grid.dart @@ -1,4 +1,5 @@ import 'package:fluent_ui/fluent_ui.dart'; +import 'package:xbox_launcher/shared/enums/tile_size.dart'; import 'package:xbox_launcher/shared/widgets/tiles/tile_base.dart'; class TileGrid extends StatelessWidget { @@ -44,6 +45,37 @@ class TileGrid extends StatelessWidget { ); } + factory TileGrid.tileSize( + {Key? key, + required List tiles, + required TileSize tileSize, + Axis scrollDirection = Axis.vertical}) { + int crossAxisCount; + switch (tileSize) { + case TileSize.SMALL: + crossAxisCount = 8; + break; + case TileSize.BIG: + crossAxisCount = 4; + break; + case TileSize.LENGHTY: + case TileSize.MEDIUM: + default: + crossAxisCount = 6; + break; + } + return TileGrid( + tiles: tiles, + gridDelegate: SliverGridDelegateWithFixedCrossAxisCount( + crossAxisCount: crossAxisCount, + crossAxisSpacing: 10, + mainAxisSpacing: 10, + ), + itemCount: tiles.length, + scrollDirection: scrollDirection, + ); + } + @override Widget build(BuildContext context) { return GridView.builder( From c3a074098e0186978cd1f51d88202450389036dc Mon Sep 17 00:00:00 2001 From: LuanRoger Date: Tue, 18 Oct 2022 08:57:30 -0300 Subject: [PATCH 06/11] Get store link --- .../xcloud_game_picker/models/xcloud_game.py | 5 +- .../xcloud_elements_consts.py | 11 +- .../xcloud_game_picker/xcloud_game_picker.py | 4 +- tools/xcloud_game_picker/xcloud_games.json | 1857 ++++++++--------- 4 files changed, 912 insertions(+), 965 deletions(-) diff --git a/tools/xcloud_game_picker/models/xcloud_game.py b/tools/xcloud_game_picker/models/xcloud_game.py index bad4815..6ca4d67 100644 --- a/tools/xcloud_game_picker/models/xcloud_game.py +++ b/tools/xcloud_game_picker/models/xcloud_game.py @@ -13,9 +13,11 @@ class XcloudGame: xcloudUrl: str tileGameImageUrl: str gameImageUrl: str + storeUrl: str def __init__(self, gameTitle: str, gamePublisher:str, gameDeveloper: str, gameGenres: List[str], - releaseDate: str, extraGameProperties: GameProperties, xcloudUrl: str, tileGameImageUrl: str, gameImageUrl: str): + releaseDate: str, extraGameProperties: GameProperties, xcloudUrl: str, tileGameImageUrl: str, gameImageUrl: str, + storeUrl: str): self.gameTitle = gameTitle self.gamePublisher = gamePublisher self.gameDeveloper = gameDeveloper @@ -25,6 +27,7 @@ def __init__(self, gameTitle: str, gamePublisher:str, gameDeveloper: str, gameGe self.xcloudUrl = xcloudUrl self.tileGameImageUrl = tileGameImageUrl self.gameImageUrl = gameImageUrl + self.storeUrl = storeUrl def __eq__(self, other: object) -> bool: if(isinstance(other, type(self))): diff --git a/tools/xcloud_game_picker/xcloud_elements_consts.py b/tools/xcloud_game_picker/xcloud_elements_consts.py index ffa6693..5c90934 100644 --- a/tools/xcloud_game_picker/xcloud_elements_consts.py +++ b/tools/xcloud_game_picker/xcloud_elements_consts.py @@ -1,11 +1,12 @@ GAMES_GRID_ELEMENT: str = "GameItemGrid-module__postitionRelative___1SLzN" -GAME_TITLE_H1_ELEMENT: str = "Header-module__titleText___3SdNz" -GAME_SUBTITLE_ELEMENT: str = "Header-module__subtitleText___3-dTd" +GAME_TITLE_H1_ELEMENT: str = "Header-module__titleText___2UTto" +GAME_SUBTITLE_ELEMENT: str = "Header-module__subtitleText___s-dWF" +STORE_BUTTON_ELEMENT: str = "ActionButtons-module__secondaryButtonsContainer___1Pudg" -GAME_PROPERTIES_CONTAINER: str = "Header-module__gamePassAndInputsContainer___dD-iS" -SUPPORTED_INPUTS_CONTAINER: str = "SupportedInputs-module__container___cVNHQ" +GAME_PROPERTIES_CONTAINER: str = "Header-module__gamePassAndInputsContainerV2___2j-Zg" +SUPPORTED_INPUTS_CONTAINER: str = "Header-module__supportedInputsContainer___3Jrpy" GAME_HERO_IMAGE_ELEMENT: str = "GameArt-module__image___1AJ9J HeroBackgroundImage-module__heroImage___2JqG_" -GAME_INFO_BOX_XPATH: str = "//div[contains(@class, 'LargeDescription-module__gameDetailsSubtitle___2vSHJ DescriptionItem-module__subtitle___2koxY')]" +GAME_INFO_BOX_XPATH: str = "//div[contains(@class, 'LargeDescription-module__gameDetailsSubtitle___C3bx_ DescriptionItem-module__subtitle___x8Vdo')]" diff --git a/tools/xcloud_game_picker/xcloud_game_picker.py b/tools/xcloud_game_picker/xcloud_game_picker.py index 509e1a3..4665afc 100644 --- a/tools/xcloud_game_picker/xcloud_game_picker.py +++ b/tools/xcloud_game_picker/xcloud_game_picker.py @@ -81,7 +81,7 @@ def format_hero_image(url: str) -> str: game_title = driver.find_element(by=By.CLASS_NAME, value=GAME_TITLE_H1_ELEMENT).text game_properties: GameProperties = getGamesProperties(driver.find_element(by=By.CLASS_NAME, value=GAME_PROPERTIES_CONTAINER)) - + store_url: str = driver.find_element(by=By.CLASS_NAME, value=STORE_BUTTON_ELEMENT).find_element(by=By.TAG_NAME, value="a").get_attribute("href") game_genre = getGameGenres(driver) hero_image = driver.find_elements(by=By.TAG_NAME, value="source") @@ -93,7 +93,7 @@ def format_hero_image(url: str) -> str: goto_tab(driver, 0) new_game = XcloudGame(game_title, game_info_box[0], game_info_box[1], game_genre, game_info_box[2], - game_properties, add_formater_game_url_server(game_url), tile_image_url, game_image_url) + game_properties, add_formater_game_url_server(game_url), tile_image_url, game_image_url, store_url) if(new_game not in games_list): games_list.append(new_game) diff --git a/tools/xcloud_game_picker/xcloud_games.json b/tools/xcloud_game_picker/xcloud_games.json index 5982358..af81eac 100644 --- a/tools/xcloud_game_picker/xcloud_games.json +++ b/tools/xcloud_game_picker/xcloud_games.json @@ -9,7 +9,7 @@ "releaseDate": "27/06/2016", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/7-days-to-die/BRL7GC0GP1BM", @@ -26,47 +26,13 @@ "releaseDate": "24/03/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/a-memoir-blue/9NL4KTK0N4CG", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.55802.13714290489749263.fa316741-1615-4cad-942c-7c2fddc7b069.86d4a18f-cf41-4fa9-92af-8c95ca311c96?w=%i&h=%i", "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.12478.13714290489749263.fa316741-1615-4cad-942c-7c2fddc7b069.f1bbf8b2-4ab6-4295-8bea-d41b506e812a?h=%i&format=jpg" }, - { - "gameTitle": "A Plague Tale: Innocence", - "gamePublisher": "Focus Entertainment", - "gameDeveloper": "Asobo Studio", - "gameGenres": [ - "A\u00e7\u00e3o e aventura" - ], - "releaseDate": "13/05/2019", - "extraGameProperties": { - "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": false - }, - "xcloudUrl": "https://www.xbox.com/%s/play/games/a-plague-tale-innocence/BQ2NNLQPS8RS", - "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.61900.68306748966338141.e6f96fac-aa67-4f59-9043-10654607aa79.7472e56d-b2da-462f-8312-d12050d56ec6?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.49740.68306748966338141.e6f96fac-aa67-4f59-9043-10654607aa79.4bb59d7f-53c0-43d1-9ef2-20f2de8e893a?h=%i&format=jpg" - }, - { - "gameTitle": "AI: THE SOMNIUM FILES", - "gamePublisher": "Spike Chunsoft", - "gameDeveloper": "Spike Chunsoft", - "gameGenres": [ - "A\u00e7\u00e3o e aventura" - ], - "releaseDate": "30/09/2021", - "extraGameProperties": { - "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true - }, - "xcloudUrl": "https://www.xbox.com/%s/play/games/ai-the-somnium-files/9P3RMG6MSCFB", - "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.15023.14532753298259851.fe5f1fef-6b24-4916-ae82-ce72a7c18637.6cb76876-28a2-4f37-8448-b95737d452e4?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.7338.14532753298259851.fe5f1fef-6b24-4916-ae82-ce72a7c18637.d29dba25-79e7-40e8-9d4a-34e7e8a1faa4?h=%i&format=jpg" - }, { "gameTitle": "ANVIL : Vault Breaker (Game Preview)", "gamePublisher": "SK TELECOM CO., LTD.", @@ -78,8 +44,8 @@ "releaseDate": "22/11/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/anvil-vault-breaker-game-preview/9PJPV2PC3MWR", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.19212.14277836659846754.5f133eeb-446d-45d9-bc2f-294eea5a641c.54b4f184-784c-427a-ae39-4b1463a58a57?w=%i&h=%i", @@ -95,7 +61,7 @@ "releaseDate": "26/05/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/ark-ultimate-survivor-edition/9N5JRWWGMS1R", @@ -113,7 +79,7 @@ "releaseDate": "05/02/2019", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/astroneer/9NBLGGH43KZB", @@ -131,7 +97,7 @@ "releaseDate": "24/08/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/aliens-fireteam-elite/9PG28RXDG9GQ", @@ -148,8 +114,8 @@ "releaseDate": "13/12/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/among-us/9NG07QJNK38J", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.21162.13589262686196899.16e3418a-cbf2-4748-9724-1c9dc9b7a0b9.14afafe9-1b03-4df0-95ad-12e2712a3b53?w=%i&h=%i", @@ -165,8 +131,8 @@ "releaseDate": "16/09/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/aragami-2/9PN9WG83X4XF", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.22986.14347616248294866.f2c12ab4-ed34-4e28-b51d-b89260f65198.c2f48fe0-70e2-4a54-af39-02de867401ba?w=%i&h=%i", @@ -183,8 +149,8 @@ "releaseDate": "02/12/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/archvale/9P3MGM8ZCS5D", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.20086.14539916772838877.ac2b2d42-d84b-4c24-8fe1-11b90b3ed1f0.291df9fa-27ba-42d9-b74b-40c45a59f1b8?w=%i&h=%i", @@ -201,46 +167,46 @@ "releaseDate": "19/07/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/as-dusk-falls/9NR7XDNVP5SW", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.46746.14387733153613072.28665954-14dc-4229-8e3c-0257e25089cb.46b89faa-6b2f-433b-aefc-16e5063ea2af?w=%i&h=%i", "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.20006.14387733153613072.563f42df-3a88-4df7-999d-62897cc0ccde.a7393a26-d54a-42bd-b304-886b4dfb025d?h=%i&format=jpg" }, { - "gameTitle": "Assassin's Creed\u00ae Origins", + "gameTitle": "Assassin's Creed\u00ae Odyssey", "gamePublisher": "Ubisoft", - "gameDeveloper": "Ubisoft", + "gameDeveloper": "Ubisoft Quebec", "gameGenres": [ "A\u00e7\u00e3o e aventura" ], - "releaseDate": "26/10/2017", + "releaseDate": "04/10/2018", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, - "xcloudUrl": "https://www.xbox.com/%s/play/games/assassin's-creed-origins/BZGJRJC1FGF3", - "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.24317.63657969076271726.d61cc1bb-fe99-40ef-b061-bded231757be.c17f684c-0c90-4d39-911e-8bd8c0622587?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.51508.63657969076271726.154f5a09-55ab-4b31-bc57-4e0335fab06a.8c56d9de-b95f-4f50-931b-818bc7d5711c?h=%i&format=jpg" + "xcloudUrl": "https://www.xbox.com/%s/play/games/assassin's-creed-odyssey/BW9TWC8L4JCS", + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.45811.71972716530068101.91350a92-63c5-4583-96a7-c8e03d0d6c67.a5f46c28-e00c-40a7-b5e0-a723a407bb16?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.53783.71972716530068101.ccdcadf1-1d2a-49f2-9c37-0b0a27e5a53c.6d60329c-2f2a-4ac9-9dd3-2f132d5c3b6c?h=%i&format=jpg" }, { - "gameTitle": "Astria Ascending", - "gamePublisher": "Dear Villagers", - "gameDeveloper": "Artisan Studios", + "gameTitle": "Assassin's Creed\u00ae Origins", + "gamePublisher": "Ubisoft", + "gameDeveloper": "Ubisoft", "gameGenres": [ - "RPG" + "A\u00e7\u00e3o e aventura" ], - "releaseDate": "30/09/2021", + "releaseDate": "26/10/2017", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, - "xcloudUrl": "https://www.xbox.com/%s/play/games/astria-ascending/9MW7H0DVS9T6", - "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.38685.13848754335407647.66ca62ea-ec06-4597-8c24-d1dd403875c5.bf781494-4ad5-4621-9bf7-cfc3627e7631?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.13499.13848754335407647.66ca62ea-ec06-4597-8c24-d1dd403875c5.c81fa44f-5453-43ba-94bc-a49b8cd57cd3?h=%i&format=jpg" + "xcloudUrl": "https://www.xbox.com/%s/play/games/assassin's-creed-origins/BZGJRJC1FGF3", + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.24317.63657969076271726.d61cc1bb-fe99-40ef-b061-bded231757be.c17f684c-0c90-4d39-911e-8bd8c0622587?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.51508.63657969076271726.154f5a09-55ab-4b31-bc57-4e0335fab06a.8c56d9de-b95f-4f50-931b-818bc7d5711c?h=%i&format=jpg" }, { "gameTitle": "BLiNX: The Time Sweeper", @@ -252,8 +218,8 @@ "releaseDate": "16/04/2018", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/blinx-the-time-sweeper/BRG51C5MWFSG", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.1712.69676224553003885.7746d59f-9224-4b66-8097-e540a8ad4b00.a2e18719-7a03-42b0-9324-907f92092527?w=%i&h=%i", @@ -269,7 +235,7 @@ "releaseDate": "11/10/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/back-4-blood/BXLL06QN8HVP", @@ -286,8 +252,8 @@ "releaseDate": "07/06/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/backbone/9NC9TNXS9C8G", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.3533.13571577878997765.bf0e584f-1da0-45dc-9616-f8707de4bf08.688aec25-927e-4198-b219-643c650b7930?w=%i&h=%i", @@ -304,7 +270,7 @@ "releaseDate": "02/08/2010", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/banjo-kazooie-n-n-b/BVR64CDJ01FJ", @@ -322,8 +288,8 @@ "releaseDate": "10/01/2010", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/banjo-kazooie/BSJG7TTSWVJ2", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.58897.70306648669442933.0ad02883-9547-43ed-a595-2a807684ce15.fa8d898f-1097-46fa-b35d-22ceefda2a7a?w=%i&h=%i", @@ -340,8 +306,8 @@ "releaseDate": "22/06/2010", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/banjo-tooie/BX27S00SKW1V", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.2699.63435052096425467.cd1eef72-5707-4f2b-807d-ab3c5baf858c.9ebaa8fc-f1bf-49e8-93fd-62833dbb6b26?w=%i&h=%i", @@ -358,7 +324,7 @@ "releaseDate": "27/10/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/bassmaster-fishing-2022/9MTTMQ6WSDP8", @@ -375,7 +341,7 @@ "releaseDate": "22/06/2015", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/batman-arkham-knight/BSLX1RNXR6H7", @@ -392,7 +358,7 @@ "releaseDate": "21/11/2013", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/battlefield-4/BP15SF17LH13", @@ -409,7 +375,7 @@ "releaseDate": "20/08/2017", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/battlefield-1-revolution/BPL68T0XK96W", @@ -426,7 +392,7 @@ "releaseDate": "19/11/2018", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/battlefield-v/BZ2N7TQ0XCF2", @@ -444,13 +410,31 @@ "releaseDate": "19/08/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/battletoads/9N7GCF5SGCXC", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.14695.14065499269907016.670ddf59-3954-4cfa-927c-60562b664545.56c9f977-b0a8-4b8e-8644-609b768fbc51?w=%i&h=%i", "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.11695.14065499269907016.249670e2-cad9-48bb-aa0f-309d712ede80.314fc433-a37a-49dc-8282-714cca415277?h=%i&format=jpg" }, + { + "gameTitle": "Beacon Pines", + "gamePublisher": "Fellow Traveller", + "gameDeveloper": "Hiding Spot", + "gameGenres": [ + "A\u00e7\u00e3o e aventura", + "Fam\u00edlia e crian\u00e7as" + ], + "releaseDate": "22/09/2022", + "extraGameProperties": { + "isInGamePass": true, + "controllerSupport": false, + "touchControllerSupport": false + }, + "xcloudUrl": "https://www.xbox.com/%s/play/games/beacon-pines/9P4R2M0NRWNK", + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.23560.14588206397851258.078192f2-519f-4a81-b68d-2dbd6199f2c2.af953250-54af-4a2a-be0c-163b68917421?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.39650.14588206397851258.078192f2-519f-4a81-b68d-2dbd6199f2c2.0f659ae9-51f1-4a1d-a086-0a5f165d5b5f?h=%i&format=jpg" + }, { "gameTitle": "Before We Leave", "gamePublisher": "Team17", @@ -462,7 +446,7 @@ "releaseDate": "22/11/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/before-we-leave/9N360TZQZ0TR", @@ -480,8 +464,8 @@ "releaseDate": "08/10/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/ben-10-power-trip/9NJWFF2KHL6H", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.30849.13672727399820228.e1322d27-4961-46da-9c7b-c310d3e28cb1.90cdc8cc-0bdd-4b06-ba46-71549ba3bf46?w=%i&h=%i", @@ -497,8 +481,8 @@ "releaseDate": "30/12/2799", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/besiege-console-game-preview/9PPFBQG81Q5J", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.45096.14326017138836689.0723eba4-7b1a-4eb0-8e6a-5c58708793ed.732b50ba-da04-4fbe-9368-64a7e03fcebd?w=%i&h=%i", @@ -514,7 +498,7 @@ "releaseDate": "03/03/2019", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/black-desert/BTPDCJXNFSZL", @@ -532,30 +516,13 @@ "releaseDate": "24/03/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/bleeding-edge/9NX6XGVJ0J3D", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.5290.14431087147384961.13dc1a18-3532-477b-b2d2-772256efc040.6fab8e78-8a3d-4b85-a5b1-33f32aeb8ea3?w=%i&h=%i", "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.1277.14431087147384961.13dc1a18-3532-477b-b2d2-772256efc040.0a9d1479-3e71-4a22-ac8d-22b89141aba7?h=%i&format=jpg" }, - { - "gameTitle": "Bloodroots", - "gamePublisher": "Paper Cult", - "gameDeveloper": "Paper Cult", - "gameGenres": [ - "A\u00e7\u00e3o e aventura" - ], - "releaseDate": "14/07/2021", - "extraGameProperties": { - "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true - }, - "xcloudUrl": "https://www.xbox.com/%s/play/games/bloodroots/9MXPZ33Z9PWH", - "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.5836.13885479758554514.4790f2a3-6258-4331-80e4-b9113b0a42e5.7592a7b7-b76b-4ab1-bced-6431df14bb57?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.63645.13885479758554514.4790f2a3-6258-4331-80e4-b9113b0a42e5.d501eb23-fa1f-4deb-87f3-80398f4d8283?h=%i&format=jpg" - }, { "gameTitle": "Breathedge", "gamePublisher": "HypeTrain Digital\u202c", @@ -567,7 +534,7 @@ "releaseDate": "05/04/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/breathedge/9NR7LV9PB9SD", @@ -585,8 +552,8 @@ "releaseDate": "27/02/2018", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/bridge-constructor-portal/BNRX1DN6GXM6", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.53942.68088896991488711.7d62a8af-1aa7-44bf-a425-105cabf5c97f.6aaec0f6-8abc-4ed7-a0dc-4ba047115e76?w=%i&h=%i", @@ -602,31 +569,13 @@ "releaseDate": "22/06/2017", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/broken-age/BRT1K9FV4LRR", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.11626.69320940561073110.189571f5-bf61-4250-851f-3d627dfcdc29.bed721b9-7f8d-4800-ad0b-7a07807c0863?w=%i&h=%i", "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.8857.69320940561073110.189571f5-bf61-4250-851f-3d627dfcdc29.26a2dcd6-c80f-45bf-977a-ead079284fe9?h=%i&format=jpg" }, - { - "gameTitle": "Bug Fables", - "gamePublisher": "DANGEN Entertainment", - "gameDeveloper": "--", - "gameGenres": [ - "A\u00e7\u00e3o e aventura", - "RPG" - ], - "releaseDate": "28/05/2020", - "extraGameProperties": { - "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true - }, - "xcloudUrl": "https://www.xbox.com/%s/play/games/bug-fables-the-everlasting-sapling/9PNNV537W2SN", - "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.1046.14344790277585539.b4056385-7547-4ec2-8829-8802ea4d96af.8477259c-0f16-4d05-9d1f-c20a7cc2699f?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.8555.14344790277585539.23a34aa2-7949-4ec7-bf8e-0e6415acdbcd.05c986ac-9e6a-43e3-8bee-2b2e639d5b0d?h=%i&format=jpg" - }, { "gameTitle": "Bugsnax", "gamePublisher": "Young Horses", @@ -637,8 +586,8 @@ "releaseDate": "28/04/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/bugsnax/9P0FQ0XCV0LB", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.19620.14527663576451809.5be6f978-a9ed-42c5-8ee1-87dc4d947724.7e2ac7bd-0040-4c16-80e1-3a7cf1d566a7?w=%i&h=%i", @@ -655,13 +604,31 @@ "releaseDate": "07/04/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/chinatown-detective-agency/9NV2VTVG0L31", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.32647.14407039492580836.0ee1fbde-13a0-4676-975c-913f27fd0ac6.5402bc40-0e5f-434f-8cc2-a738028aac3c?w=%i&h=%i", "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.42184.14407039492580836.0ee1fbde-13a0-4676-975c-913f27fd0ac6.0b6393da-0bb6-4e42-bf18-548d6f7a15cb?h=%i&format=jpg" }, + { + "gameTitle": "Chivalry 2", + "gamePublisher": "Tripwire Interactive LLC", + "gameDeveloper": "Torn Banner Studios", + "gameGenres": [ + "A\u00e7\u00e3o e aventura", + "Luta" + ], + "releaseDate": "08/06/2021", + "extraGameProperties": { + "isInGamePass": true, + "controllerSupport": false, + "touchControllerSupport": false + }, + "xcloudUrl": "https://www.xbox.com/%s/play/games/chivalry-2/9N7CJX93ZGWN", + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.61947.14071745200459129.81e3e86f-3ab4-4027-b9a1-81f595fcb505.fc2487e4-7785-4a73-b2ad-b94aa01a7e7f?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.56595.14071745200459129.81e3e86f-3ab4-4027-b9a1-81f595fcb505.bcc44c15-cee0-4c07-a92c-766beb8fb174?h=%i&format=jpg" + }, { "gameTitle": "Chorus", "gamePublisher": "Deep Silver", @@ -673,8 +640,8 @@ "releaseDate": "03/12/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/chorus/9NN1Z8LHMFBV", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.19672.13751787478651765.747d9b13-75e6-4c34-a196-72624dc19de6.c2d9f22b-a5f5-4802-997c-7a5b2780895d?w=%i&h=%i", @@ -690,8 +657,8 @@ "releaseDate": "20/04/2017", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/cities-skylines---xbox-one-edition/C4GH8N6ZXG5L", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.42716.66617542682682743.811213f2-2c45-4145-973d-fe3e3774b196.c2dab488-7382-45d1-bf6c-6b8be6e3fd96?w=%i&h=%i", @@ -708,8 +675,8 @@ "releaseDate": "05/05/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/citizen-sleeper/9N6F97F9WGL0", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.55562.14019812399166283.86c56d8c-9235-45b0-85dd-dc9647631d6e.d1c98280-ac63-4f01-85ed-41e58c8fac35?w=%i&h=%i", @@ -726,7 +693,7 @@ "releaseDate": "27/10/2016", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/clustertruck/BX4J85JZNGXQ", @@ -744,8 +711,8 @@ "releaseDate": "31/01/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/coffee-talk/9N17CM38WNN8", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.30354.13910765112993759.85e2446b-e867-4d17-a642-a74c828870ce.c92e92ee-4550-424d-9389-a717815bd19f?w=%i&h=%i", @@ -761,8 +728,8 @@ "releaseDate": "29/08/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/commandos-3---hd-remaster/9N1NBJNDD08J", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.10518.13897860358759559.772dd4c1-b1a6-4046-9b09-a4b441fe30aa.f56556c8-28de-4893-a4f4-59694207b18d?w=%i&h=%i", @@ -778,7 +745,7 @@ "releaseDate": "07/05/2018", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/conan-exiles/C2X6ZCNKN2WR", @@ -795,8 +762,8 @@ "releaseDate": "25/06/2014", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/contrast/BSLTQT4L0RLV", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.19374.69833471246794389.8c89db73-09ce-4d32-a517-3dd3f2acf25f.d80b8b92-815d-4eed-a529-c7ba2376e8bf?w=%i&h=%i", @@ -812,7 +779,7 @@ "releaseDate": "14/08/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/cooking-simulator/9N3DKKRHSJBT", @@ -820,39 +787,39 @@ "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.32115.13934302625463282.ce885e17-8e35-4fa6-951c-1f7e58c35e4f.aedd415c-053d-49a0-a707-3aba18aa2a4f?h=%i&format=jpg" }, { - "gameTitle": "Crackdown 3", - "gamePublisher": "Xbox Game Studios", - "gameDeveloper": "Sumo Digital Ltd | Elbow Rocket", + "gameTitle": "Costume Quest", + "gamePublisher": "THQ, Inc.", + "gameDeveloper": "Double Fine Productions, Inc.", "gameGenres": [ - "A\u00e7\u00e3o e aventura" + "A\u00e7\u00e3o e aventura", + "RPG" ], - "releaseDate": "15/02/2019", + "releaseDate": "19/10/2010", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, - "xcloudUrl": "https://www.xbox.com/%s/play/games/crackdown-3/9NXR6469DM2P", - "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.63949.14494915233617130.8bc2d647-9563-4ed3-9081-f4a771cfa3a6.6504c19a-15a5-40a6-9231-343598749956?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.7524.14494915233617130.8bc2d647-9563-4ed3-9081-f4a771cfa3a6.a1bdb61c-5265-420e-a5d0-307940ca5f9f?h=%i&format=jpg" + "xcloudUrl": "https://www.xbox.com/%s/play/games/costume-quest/BR74RLMH966K", + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.18636.69532389726997442.230b98e2-1f17-47ab-9d5a-06afb771f0de.57d2c274-ba74-4d0a-a98f-24a4ca808a82?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.47121.69532389726997442.230b98e2-1f17-47ab-9d5a-06afb771f0de.a4b185ec-6d05-4391-9919-046299c7651b?h=%i&format=jpg" }, { - "gameTitle": "Craftopia", - "gamePublisher": "POCKET PAIR, Inc.", - "gameDeveloper": "POCKET PAIR, Inc.", + "gameTitle": "Crackdown 3", + "gamePublisher": "Xbox Game Studios", + "gameDeveloper": "Sumo Digital Ltd | Elbow Rocket", "gameGenres": [ - "A\u00e7\u00e3o e aventura", - "RPG" + "A\u00e7\u00e3o e aventura" ], - "releaseDate": "05/07/2021", + "releaseDate": "15/02/2019", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, - "xcloudUrl": "https://www.xbox.com/%s/play/games/craftopia/9NTM9G539XTT", - "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.59045.14415744061326680.ca18f220-3c29-47ac-b488-ffd7a3e0ba11.93c25555-0136-44cc-a2f7-3a95f1e85315?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.31000.14415744061326680.dc6a6500-d077-44d1-82e3-9c2d59251e98.39e3e711-1ac2-4c8f-b94a-8efd7740e9f3?h=%i&format=jpg" + "xcloudUrl": "https://www.xbox.com/%s/play/games/crackdown-3/9NXR6469DM2P", + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.63949.14494915233617130.8bc2d647-9563-4ed3-9081-f4a771cfa3a6.6504c19a-15a5-40a6-9231-343598749956?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.7524.14494915233617130.8bc2d647-9563-4ed3-9081-f4a771cfa3a6.a1bdb61c-5265-420e-a5d0-307940ca5f9f?h=%i&format=jpg" }, { "gameTitle": "Cricket 22", @@ -864,7 +831,7 @@ "releaseDate": "01/12/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/cricket-22/9NWNX54ZMT1K", @@ -881,8 +848,8 @@ "releaseDate": "10/11/2003", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/crimson-skies-high-road-to-revenge/C4B8XR1LCXR5", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.48725.66564363245508968.4a646a68-6736-4349-ad5c-933bc20f715a.b8eb2ce7-ae0f-4e67-8135-ff43f6e74122?w=%i&h=%i", @@ -898,7 +865,7 @@ "releaseDate": "29/12/9998", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/crossfirex-operation-catalyst/9N5Q1VBD1ZWZ", @@ -916,8 +883,8 @@ "releaseDate": "06/09/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/crown-trick/9NGCPXQG3NLZ", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.23005.13647911596394486.628fddf1-5978-4b67-a823-e73a2ca794eb.3bd24da1-c7fe-4d16-bf4c-e882c4b02355?w=%i&h=%i", @@ -934,7 +901,7 @@ "releaseDate": "29/03/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/crusader-kings-iii/9MZ8RZSD0NFQ", @@ -952,13 +919,31 @@ "releaseDate": "15/07/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/dc-league-of-super-pets-the-adventures-of-krypto-a/9NP1G0T8JDMR", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.14291.13727697462687238.ee76eff3-10ea-49a9-b873-90c81b9db9f0.f9fcc017-5bf0-4d89-84be-0fabc9746dcc?w=%i&h=%i", "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.34631.13727697462687238.ee76eff3-10ea-49a9-b873-90c81b9db9f0.1abd2a13-907a-4bb9-b31e-6bc1c9f7420f?h=%i&format=jpg" }, + { + "gameTitle": "DEATHLOOP", + "gamePublisher": "Bethesda Softworks", + "gameDeveloper": "Arkane Studios", + "gameGenres": [ + "A\u00e7\u00e3o e aventura", + "Jogos de tiros" + ], + "releaseDate": "20/09/2022", + "extraGameProperties": { + "isInGamePass": true, + "controllerSupport": false, + "touchControllerSupport": false + }, + "xcloudUrl": "https://www.xbox.com/%s/play/games/deathloop/9P5Z4530318L", + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.5858.14634955238674857.649b7ff9-0dfc-4951-9b65-c5d815215da6.90208516-ba3b-47a9-a130-ef94cf860f5b?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.26641.14634955238674857.649b7ff9-0dfc-4951-9b65-c5d815215da6.bacdd878-0313-4c58-9434-459afd7cf535?h=%i&format=jpg" + }, { "gameTitle": "DEEEER Simulator: Um Jogo de Veado Corriqueiro do Cotidiano", "gamePublisher": "PLAYISM", @@ -969,7 +954,7 @@ "releaseDate": "23/11/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/deeeer-simulator-your-average-everyday-deer-game/9NNBPBM2F60W", @@ -987,8 +972,8 @@ "releaseDate": "05/11/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/dirt-5/9PJGM0T0827V", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.57632.14216887906907763.b5352caa-b411-460d-acb5-a427d0106d4b.6eee667c-5c9b-4fec-a070-261c100702cf?w=%i&h=%i", @@ -1004,7 +989,7 @@ "releaseDate": "06/07/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/djmax-respect-v/9P544PGZXC0P", @@ -1021,7 +1006,7 @@ "releaseDate": "12/05/2016", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/doom/C3QH42WRGM3R", @@ -1038,7 +1023,7 @@ "releaseDate": "26/07/2019", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/doom-1993/9PLZPHBNHTMF", @@ -1055,7 +1040,7 @@ "releaseDate": "26/07/2019", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/doom-3/9NSL68D814GC", @@ -1073,7 +1058,7 @@ "releaseDate": "20/03/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/doom-64/9MXND4PQLK3W", @@ -1090,7 +1075,7 @@ "releaseDate": "20/03/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/doom-eternal-standard-edition/9P5S26314HWQ", @@ -1107,7 +1092,7 @@ "releaseDate": "26/07/2019", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/doom-ii-classic/9PLT62LRF9V7", @@ -1124,7 +1109,7 @@ "releaseDate": "25/01/2018", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/dragon-ball-fighterz/BZRK5C951KK7", @@ -1141,7 +1126,7 @@ "releaseDate": "03/05/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/dragon-quest-builders-2/9PFD00CZJ35V", @@ -1158,46 +1143,46 @@ "releaseDate": "03/12/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/dragon-quest-xi-s-echoes-of-an-elusive-age---defin/9PBDC0XZ8TXK", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.50295.14125332336761514.8bb2a8ee-0291-4012-97d8-2e92be70a6ac.90afa133-6034-4c81-a6fd-e7767c438a72?w=%i&h=%i", "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.16758.14125332336761514.8bb2a8ee-0291-4012-97d8-2e92be70a6ac.ff120ed5-2604-4ccc-ae66-bfbdce1112a9?h=%i&format=jpg" }, { - "gameTitle": "Dandy Ace", - "gamePublisher": "NEOWIZ", - "gameDeveloper": "Mad Mimic", + "gameTitle": "Danganronpa 2: Goodbye Despair Anniversary Edition", + "gamePublisher": "Spike Chunsoft", + "gameDeveloper": "Spike Chunsoft", "gameGenres": [ "A\u00e7\u00e3o e aventura" ], - "releaseDate": "28/09/2021", + "releaseDate": "09/05/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, - "xcloudUrl": "https://www.xbox.com/%s/play/games/dandy-ace/9NQLVQTLPRS1", - "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.25951.13767224812135522.b3138e12-6cdf-4394-bb9f-e75891e34441.3b6d4f8c-7f7a-4e1d-8a81-d80cd0d0b0bb?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.262.13767224812135522.b3138e12-6cdf-4394-bb9f-e75891e34441.08c9b61c-34a8-412a-8db6-9a9f4d1388aa?h=%i&format=jpg" + "xcloudUrl": "https://www.xbox.com/%s/play/games/danganronpa-2-goodbye-despair-anniversary-edition/9N27NM3BT3ML", + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.41493.13957199450175735.1b230d7b-e0f6-46ef-852d-a872d636bf5d.5fbadc7a-49da-46b7-95d1-7ce0ed4cc101?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.54728.13957199450175735.1b230d7b-e0f6-46ef-852d-a872d636bf5d.06f68b2e-19cd-4123-afb5-bdf7a6841d83?h=%i&format=jpg" }, { - "gameTitle": "Danganronpa 2: Goodbye Despair Anniversary Edition", + "gameTitle": "Danganronpa V3: Killing Harmony Anniversary Edition", "gamePublisher": "Spike Chunsoft", "gameDeveloper": "Spike Chunsoft", "gameGenres": [ "A\u00e7\u00e3o e aventura" ], - "releaseDate": "09/05/2022", + "releaseDate": "15/09/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, - "xcloudUrl": "https://www.xbox.com/%s/play/games/danganronpa-2-goodbye-despair-anniversary-edition/9N27NM3BT3ML", - "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.41493.13957199450175735.1b230d7b-e0f6-46ef-852d-a872d636bf5d.5fbadc7a-49da-46b7-95d1-7ce0ed4cc101?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.54728.13957199450175735.1b230d7b-e0f6-46ef-852d-a872d636bf5d.06f68b2e-19cd-4123-afb5-bdf7a6841d83?h=%i&format=jpg" + "xcloudUrl": "https://www.xbox.com/%s/play/games/danganronpa-v3-killing-harmony-anniversary-edition/9PMM6V93MRKW", + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.25192.14291162525435146.863a4856-e937-4f6f-81c8-efcb52a1546f.68e9c078-c1a4-42e7-b8f8-4a0450cea363?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.32432.14291162525435146.863a4856-e937-4f6f-81c8-efcb52a1546f.ceab6fa9-0e52-4eb3-9890-3909f6095705?h=%i&format=jpg" }, { "gameTitle": "Danganronpa: Trigger Happy Havoc Anniversary Edition", @@ -1209,8 +1194,8 @@ "releaseDate": "17/01/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/danganronpa-trigger-happy-havoc-anniversary-editio/9N07T7TGP6JG", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.15823.13926025773515961.65bfebc1-45c3-4c37-966f-35fa549dd9ce.6a2914c5-b1d3-4fa0-a102-91fa7ffb6445?w=%i&h=%i", @@ -1227,7 +1212,7 @@ "releaseDate": "26/03/2019", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/dayz/BSR9NLHVF1KL", @@ -1245,15 +1230,15 @@ "releaseDate": "06/08/2018", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/dead-cells/BQSCNS1T8PHQ", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.28912.13719691835186674.79361d33-7a18-4554-8a50-66b60d3712e6.c6a6a941-82c2-43b3-ba3e-c53428df00a6?w=%i&h=%i", "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.40300.13719691835186674.79361d33-7a18-4554-8a50-66b60d3712e6.d7bd4952-930d-4f5e-863b-67bb13f5199d?h=%i&format=jpg" }, { - "gameTitle": "Dead Space\u2122", + "gameTitle": "Dead Space (2008)", "gamePublisher": "Electronic Arts", "gameDeveloper": "Electronic Arts\u2122", "gameGenres": [ @@ -1262,10 +1247,10 @@ "releaseDate": "02/08/2010", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, - "xcloudUrl": "https://www.xbox.com/%s/play/games/dead-space/BRJLJ6RPLQTJ", + "xcloudUrl": "https://www.xbox.com/%s/play/games/dead-space-2008/BRJLJ6RPLQTJ", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.9607.69768431406041041.e1386476-b377-413b-9457-1f5559dbb168.345050eb-2861-4fc1-9bdb-e7dcc7965eea?w=%i&h=%i", "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.19172.69768431406041041.e1386476-b377-413b-9457-1f5559dbb168.e1b07f40-7e45-4cd3-bc9b-5a8ce23b2995?h=%i&format=jpg" }, @@ -1280,7 +1265,7 @@ "releaseDate": "19/06/2017", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/dead-by-daylight/C0N22P73QZ60", @@ -1297,8 +1282,8 @@ "releaseDate": "20/07/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/death's-door-%5Bxbox%5D/9NDZ7NXFF622", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.46691.13605204887272793.456e749a-524b-4372-bb98-1e7f5fac0947.55c39ef5-1120-4c74-a37d-79ee51e2e5cb?w=%i&h=%i", @@ -1314,7 +1299,7 @@ "releaseDate": "13/05/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/deep-rock-galactic/9NHFVWX1V7QJ", @@ -1332,13 +1317,31 @@ "releaseDate": "06/05/2019", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/descenders/C37XBX7DCBZ0", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.22806.65934155925401073.332e7c23-85a6-43b3-a586-2f915e27a737.f779bef0-3997-4eba-94f0-7b88eb3a74b4?w=%i&h=%i", "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.28922.65934155925401073.cdde9208-c05c-4015-852b-3c48d95ed87b.ef83fe76-7f8b-4be5-9520-14df3444ffe2?h=%i&format=jpg" }, + { + "gameTitle": "Despot's Game", + "gamePublisher": "tinyBuild", + "gameDeveloper": "Konfa Games", + "gameGenres": [ + "A\u00e7\u00e3o e aventura", + "Outros" + ], + "releaseDate": "29/09/2022", + "extraGameProperties": { + "isInGamePass": true, + "controllerSupport": false, + "touchControllerSupport": false + }, + "xcloudUrl": "https://www.xbox.com/%s/play/games/despot's-game/9P5ZDVMCJMFD", + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.54530.14634731171917513.ee44ea98-341d-42e8-b67a-c2a4254a08a0.3a8876e7-694c-40d5-8efc-0264051414e8?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.13399.14634731171917513.ee44ea98-341d-42e8-b67a-c2a4254a08a0.4239454b-8c5a-4424-b410-2039ca63a84c?h=%i&format=jpg" + }, { "gameTitle": "Destroy All Humans!", "gamePublisher": "THQ Nordic", @@ -1349,7 +1352,7 @@ "releaseDate": "28/07/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/destroy-all-humans/C2GMBPMTHDDK", @@ -1367,8 +1370,8 @@ "releaseDate": "10/11/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/dicey-dungeons/9PC4C9NLP3ZD", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.27476.14176621031001937.302a4c64-8f4d-435d-8b6d-fcd963ff70e6.59fb0946-5c13-432a-9412-eb3814a2f376?w=%i&h=%i", @@ -1384,8 +1387,8 @@ "releaseDate": "06/06/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/disc-room/9PK5G9HBH6NH", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.9672.14269183666889184.e7870fdb-6f27-4590-86e7-17bc5ea2e4f6.e86925a8-1747-4813-a958-cf37a4277380?w=%i&h=%i", @@ -1401,7 +1404,7 @@ "releaseDate": "10/11/2016", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/dishonored-2/BSZM480TSWGP", @@ -1418,7 +1421,7 @@ "releaseDate": "24/08/2015", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/dishonored-definitive-edition/C299QVC2BSJF", @@ -1435,7 +1438,7 @@ "releaseDate": "14/09/2017", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/dishonored-death-of-the-outsider/C5F2XDQPPJKZ", @@ -1453,7 +1456,7 @@ "releaseDate": "06/09/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/disney-dreamlight-valley/9NSF0BGH8D86", @@ -1470,7 +1473,7 @@ "releaseDate": "30/10/2017", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/disneyland-adventures/9N6Z8DQXSQWH", @@ -1488,8 +1491,8 @@ "releaseDate": "17/12/2018", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/donut-county/9N6V2181GHLM", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.60906.14011542784181932.80ac6320-df7b-4be6-9355-e9083a5d2063.06135ea0-0572-4ed3-b5a2-e0a158e3144d?w=%i&h=%i", @@ -1505,8 +1508,8 @@ "releaseDate": "01/11/2010", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/dragon-age-origins/BS9SX4Q6XJRF", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.25088.70226594498231256.17116041-5bab-4f35-9bd5-63b5de669a3f.3076712f-3ab7-4813-a935-b1f954d8e904?w=%i&h=%i", @@ -1522,7 +1525,7 @@ "releaseDate": "17/11/2014", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/dragon-age-inquisition/C47GZZBMR5WG", @@ -1540,31 +1543,13 @@ "releaseDate": "02/02/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/dreamscaper/9NB7FZ2GV5N1", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.64147.13522425449027354.d30e2029-af7b-42b5-9597-24dab387b2b5.5f9b306d-bb7b-4f07-99c2-c27d94d455e0?w=%i&h=%i", "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.3404.13522425449027354.d30e2029-af7b-42b5-9597-24dab387b2b5.df171986-ad35-4dd9-8c9d-ae969f9d0bca?h=%i&format=jpg" }, - { - "gameTitle": "Echo Generation", - "gamePublisher": "Cococucumber", - "gameDeveloper": "Cococucumber", - "gameGenres": [ - "A\u00e7\u00e3o e aventura", - "RPG" - ], - "releaseDate": "20/10/2021", - "extraGameProperties": { - "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true - }, - "xcloudUrl": "https://www.xbox.com/%s/play/games/echo-generation/9NN7M263513G", - "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.39630.13747800295288275.4dd54ea8-1683-47a4-a8e4-22b790c1954d.ed6a65be-0de4-424e-bbb1-9f38b5c4fc01?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.59281.13747800295288275.4dd54ea8-1683-47a4-a8e4-22b790c1954d.b5fcaece-bcfd-49ed-9a43-50d89734ff14?h=%i&format=jpg" - }, { "gameTitle": "Edge of Eternity", "gamePublisher": "Dear Villagers", @@ -1576,8 +1561,8 @@ "releaseDate": "10/02/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/edge-of-eternity/9P934697Z4W4", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.16694.14080357279144129.c9fd9598-f310-4593-b38e-50d9b36a791b.62fb47a3-8d76-4ba5-9ff0-ac8098649cf6?w=%i&h=%i", @@ -1593,8 +1578,8 @@ "releaseDate": "10/05/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/eiyuden-chronicle-rising/9NMD6VV08WGF", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.9020.13694306682751994.5bc2fdaa-7629-4489-9dcb-d5aacee2da36.ef9b1a83-12c4-429e-87b9-6fed1ad5f431?w=%i&h=%i", @@ -1611,7 +1596,7 @@ "releaseDate": "22/09/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/embr/9P9XS9D0LBPV", @@ -1629,8 +1614,8 @@ "releaseDate": "01/12/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/empire-of-sin/9NN7NF8N5Q5C", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.64796.13747976611115190.63973483-7da5-48ba-bb81-accb70ec340f.354443e8-3b01-47c1-a33e-ac487f8a8cc1?w=%i&h=%i", @@ -1647,8 +1632,8 @@ "releaseDate": "14/07/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/escape-academy/9P3NT9H51RMR", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.27583.14539026038241714.21a192f1-dd13-4371-b3d3-bd3b46c94f1c.e22769c9-5f6a-4b3b-86db-23b45314350c?w=%i&h=%i", @@ -1664,13 +1649,31 @@ "releaseDate": "29/11/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/evil-genius-2-world-domination/9NPC5398SCQ6", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.56773.13725970033936449.25aa6307-fa1b-4241-9ec3-abc63be55bac.e27edbe4-2824-44ff-8139-77965b9581a9?w=%i&h=%i", "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.54106.13725970033936449.25aa6307-fa1b-4241-9ec3-abc63be55bac.e3f4d345-5a07-4993-912c-0c5f901696bd?h=%i&format=jpg" }, + { + "gameTitle": "Eville", + "gamePublisher": "Versus Evil, LLC.", + "gameDeveloper": "VestGames", + "gameGenres": [ + "Outros", + "RPG" + ], + "releaseDate": "11/10/2022", + "extraGameProperties": { + "isInGamePass": true, + "controllerSupport": false, + "touchControllerSupport": false + }, + "xcloudUrl": "https://www.xbox.com/%s/play/games/eville/9PC12991NZ5N", + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.31296.14112988465880137.944f8dc0-63f1-4f15-96aa-cab88a628053.65e7f8f4-3625-4a09-8aa7-fead27a7806f?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.19828.14112988465880137.944f8dc0-63f1-4f15-96aa-cab88a628053.3baaa95c-7788-4c73-aef5-b1cd1bd840b6?h=%i&format=jpg" + }, { "gameTitle": "Exo One", "gamePublisher": "Future Friends Games & Exbleative", @@ -1682,8 +1685,8 @@ "releaseDate": "18/11/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/exo-one/9NJG36MFVR1L", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.8995.13681719632931019.3fadfa10-4988-4e93-8972-339883dea36a.c9fad8d9-ff5b-4d8a-bbfe-dce0089e073a?w=%i&h=%i", @@ -1700,7 +1703,7 @@ "releaseDate": "15/07/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/f1-2021/9N6J02VPG635", @@ -1717,8 +1720,8 @@ "releaseDate": "01/03/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/far-changing-tides/9N29VZ9LRNNQ", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.47853.13955748726326945.7931fe0b-e479-493c-a5eb-ac7155d10f18.aa8c6226-657f-4c1a-a5cf-8266f83ac9f8?w=%i&h=%i", @@ -1734,7 +1737,7 @@ "releaseDate": "15/10/2018", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/for-honor-marching-fire-edition/C4CBF3FHHCND", @@ -1751,8 +1754,8 @@ "releaseDate": "28/01/2014", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/fable-anniversary/C2Q32JM0BPZL", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.44376.66175927222580475.7f09fde8-a46b-4c45-8584-a5e3090f8190.12d67f03-4a2b-4967-982a-9980a185e1b1?w=%i&h=%i", @@ -1768,8 +1771,8 @@ "releaseDate": "05/04/2010", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/fable-ii/C2WKJJ9F5936", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.12706.66274487452813675.86971dec-0f03-42bb-b657-322859f064f4.5b8be489-c377-4439-a4a5-5564da9a165b?w=%i&h=%i", @@ -1786,8 +1789,8 @@ "releaseDate": "16/05/2011", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/fable-iii/BR46KM4D5B9L", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.49206.68952782261614407.207517f2-cff8-4d40-84e1-b44139d6e70b.77a300c7-676b-4530-ae94-7438be18bd8e?w=%i&h=%i", @@ -1804,8 +1807,8 @@ "releaseDate": "17/11/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/fae-tactics/9PL4HXW1H502", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.51450.14249741584182441.fad329ed-ca88-42b0-bfd3-dde8d09e0e7e.93a46ddb-0ae0-4f3a-a8a4-5d37a73292a4?w=%i&h=%i", @@ -1821,7 +1824,7 @@ "releaseDate": "01/03/2010", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/fallout-3/C29HQ887KH4B", @@ -1838,7 +1841,7 @@ "releaseDate": "09/11/2015", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/fallout-4/C3KLDKZBHNCZ", @@ -1855,7 +1858,7 @@ "releaseDate": "13/11/2018", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/fallout-76/BS6WJ2L56B10", @@ -1873,7 +1876,7 @@ "releaseDate": "18/04/2011", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/fallout-new-vegas/BX3JNK07Z6QK", @@ -1890,7 +1893,7 @@ "releaseDate": "26/03/2018", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/far-cry-5/BR7X7MVBBQKM", @@ -1907,7 +1910,7 @@ "releaseDate": "22/11/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/farming-simulator-22/9P6SRW1HVW9K", @@ -1924,8 +1927,8 @@ "releaseDate": "20/09/2016", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/firewatch/BQQKG9H2STC0", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.40478.68688977722932617.c18986e0-354d-49e5-a689-33d52a7432cb.15d49e14-f3c9-4949-b807-62a02521442b?w=%i&h=%i", @@ -1942,31 +1945,13 @@ "releaseDate": "23/05/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/floppy-knights/9NLM4TTHCWSH", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.30829.13705007807700068.f8418398-1ad9-4e90-bf4e-8ce6aabbfbfa.df128ff9-1246-46b2-bbed-8e4c98445275?w=%i&h=%i", "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.15574.13705007807700068.f8418398-1ad9-4e90-bf4e-8ce6aabbfbfa.edecefb3-678b-4d2d-8269-b2db60216c37?h=%i&format=jpg" }, - { - "gameTitle": "Flynn: Son of Crimson", - "gamePublisher": "Humble Games", - "gameDeveloper": "Studio Thunderhorse", - "gameGenres": [ - "A\u00e7\u00e3o e aventura", - "Plataforma" - ], - "releaseDate": "15/09/2021", - "extraGameProperties": { - "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true - }, - "xcloudUrl": "https://www.xbox.com/%s/play/games/flynn-son-of-crimson/9MZNFF29W9ZX", - "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.37801.13871193739196601.a1cca675-db24-4dff-8274-f9b0983c449b.6dc0195b-23be-4d5c-af19-95ccbf899ceb?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.22610.13871193739196601.a1cca675-db24-4dff-8274-f9b0983c449b.c5a5d471-a7e2-44fb-b415-1e959b885054?h=%i&format=jpg" - }, { "gameTitle": "Forager", "gamePublisher": "Humble Games", @@ -1978,7 +1963,7 @@ "releaseDate": "15/07/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/forager/9MV2S7Q5PHSW", @@ -1996,12 +1981,12 @@ "releaseDate": "24/07/2017", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/fortnite/BT5P2X999VH2", - "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.55966.70702278257994163.133b597d-908a-4502-889f-e9dea8bc1d74.94c26671-bb61-4692-8455-2b3eabaf7187?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.29286.70702278257994163.feb082f1-be87-4bf9-806e-568362a9e340.457013dd-c406-40f3-8e20-285cb487a33d?h=%i&format=jpg" + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.29537.70702278257994163.b4f7e5cb-12c9-4573-a0a3-d67a76ff36fd.264a0e27-9ca4-4422-b683-aff14b835f31?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.16457.70702278257994163.b4f7e5cb-12c9-4573-a0a3-d67a76ff36fd.aea76de6-52f8-42af-ba8c-06e3603e0e87?h=%i&format=jpg" }, { "gameTitle": "Forza Horizon 4 Edi\u00e7\u00e3o Padr\u00e3o", @@ -2013,7 +1998,7 @@ "releaseDate": "02/10/2018", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/forza-horizon-4-standard-edition/9PNJXVCVWD4K", @@ -2030,7 +2015,7 @@ "releaseDate": "09/11/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/forza-horizon-5-standard-edition/9NKX70BBCDRN", @@ -2048,13 +2033,30 @@ "releaseDate": "11/10/2019", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/frostpunk-console-edition/9NP539LHJD8S", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.46316.13729671074412623.f72f7df4-e873-4e52-a4dc-651d0b3e8b0f.1625980c-0794-44fa-88d0-e00b37773b21?w=%i&h=%i", "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.14473.13729671074412623.3c1853e8-a2eb-4ccb-b708-021e412d015c.2700e93a-8d11-4611-be92-9ef46597b880?h=%i&format=jpg" }, + { + "gameTitle": "Fuga: Melodies of Steel", + "gamePublisher": "CyberConnect2", + "gameDeveloper": "CyberConnect2", + "gameGenres": [ + "RPG" + ], + "releaseDate": "28/07/2021", + "extraGameProperties": { + "isInGamePass": true, + "controllerSupport": false, + "touchControllerSupport": false + }, + "xcloudUrl": "https://www.xbox.com/%s/play/games/fuga-melodies-of-steel/9NLX3GWW0HF1", + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.41808.13703325884761588.f33ea47b-9cce-415c-a23e-066944821a2c.298c2f09-26eb-4529-a16c-e7b3c50c3def?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.37253.13703325884761588.f33ea47b-9cce-415c-a23e-066944821a2c.9f3dca0f-edf2-44a4-8c15-2266f7a59bc7?h=%i&format=jpg" + }, { "gameTitle": "Fuzion Frenzy\u00ae", "gamePublisher": "Microsoft", @@ -2065,8 +2067,8 @@ "releaseDate": "22/09/2001", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/fuzion-frenzy/C2P985H1H42H", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.29460.65553901453292980.5f73bae7-0b93-4345-bf12-87df77ec6f05.2e554579-0c20-4b04-89a5-e6cbce60d4a0?w=%i&h=%i", @@ -2082,7 +2084,7 @@ "releaseDate": "26/03/2019", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/gang-beasts/BPQZT43FWD49", @@ -2100,8 +2102,8 @@ "releaseDate": "11/07/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/garden-story/9PP09MJRH2XD", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.59861.14334501706636147.97df104f-715b-4347-b111-98fa1cbd5f7c.c9ebf3de-6630-46e2-a5ba-612131822246?w=%i&h=%i", @@ -2117,8 +2119,8 @@ "releaseDate": "14/12/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/gears-5-game-of-the-year-edition/9P4KMR76PLLQ", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.9672.14591801423393397.e1044226-28d7-42f6-a357-7102f7d1a4b3.5554c17b-3189-46a1-93fb-2005d1d08e7e?w=%i&h=%i", @@ -2134,8 +2136,8 @@ "releaseDate": "09/11/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/gears-tactics/9NN3HCKW5TPC", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.2270.13750744755532010.7748d323-597f-440a-94e4-9c030198efa6.39a3aebc-6a07-4d8a-83e3-597bd117ff7b?w=%i&h=%i", @@ -2151,7 +2153,7 @@ "releaseDate": "11/10/2010", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/gears-of-war-2/C1SDBNRFXT1D", @@ -2168,7 +2170,7 @@ "releaseDate": "26/03/2012", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/gears-of-war-3/BPKDQSSFQ9WV", @@ -2185,7 +2187,7 @@ "releaseDate": "11/10/2016", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/gears-of-war-4/9NBLGGH4PBBM", @@ -2202,7 +2204,7 @@ "releaseDate": "17/06/2013", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/gears-of-war-judgment/BSHMMGRP84N4", @@ -2219,7 +2221,7 @@ "releaseDate": "24/08/2015", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/gears-of-war-ultimate-edition/BQT21VXFS52F", @@ -2237,7 +2239,7 @@ "releaseDate": "25/03/2019", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/generation-zero/C20WW4W29FQ1", @@ -2255,8 +2257,8 @@ "releaseDate": "11/03/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/genesis-noir/9PHK9D8CLQCG", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.47660.13844380730124915.b015e4f1-318e-475f-8d5a-24ea35c62b4c.c9ffcac7-cf41-4392-9a5c-164e93e0aa64?w=%i&h=%i", @@ -2272,35 +2274,17 @@ "releaseDate": "16/04/2015", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/goat-simulator/BV0NM309K1TL", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.53467.70628353720390187.c5ec2284-1a6e-4ed0-a094-b54b14b8d466.186f50d1-55ce-4827-925f-6816154430d6?w=%i&h=%i", "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.46116.70628353720390187.c5ec2284-1a6e-4ed0-a094-b54b14b8d466.f01d3b8d-41e1-42bc-b322-443ee5b1f390?h=%i&format=jpg" }, - { - "gameTitle": "Going Under", - "gamePublisher": "Team17 Digital Ltd.", - "gameDeveloper": "Aggro Crab Games", - "gameGenres": [ - "A\u00e7\u00e3o e aventura", - "Outros" - ], - "releaseDate": "24/09/2020", - "extraGameProperties": { - "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true - }, - "xcloudUrl": "https://www.xbox.com/%s/play/games/going-under/9NX3G3Z38CV2", - "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.62313.14437459340601773.3d3dec2e-e846-4684-b044-1b3f72b7aa81.661b152d-717f-4340-bce2-fe70c0300084?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.504.14437459340601773.3d3dec2e-e846-4684-b044-1b3f72b7aa81.2f7e6a9b-87e1-4594-97cc-597532ce41b9?h=%i&format=jpg" - }, { "gameTitle": "Golf With Your Friends", - "gamePublisher": "Team17 Digital Ltd", - "gameDeveloper": "Blacklight Interactive", + "gamePublisher": "Team17", + "gameDeveloper": "Blacklight Interactive and Team17", "gameGenres": [ "Fam\u00edlia e crian\u00e7as", "Esportes" @@ -2308,12 +2292,12 @@ "releaseDate": "19/05/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/golf-with-your-friends/9N14G09PWG74", - "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.59144.13908316754263937.5c54bde2-f9c8-4fbc-a7d0-4f022b0e27ed.036b4831-8e1e-4895-bf47-2058e72d5102?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.38143.13908316754263937.5c54bde2-f9c8-4fbc-a7d0-4f022b0e27ed.6251c10a-567e-471c-9453-e2514bbb3ff4?h=%i&format=jpg" + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.6387.13908316754263937.a2613d65-5012-428e-8936-df4b3295d7bd.7d2ab0ab-de55-4ed7-99d5-6b77de424f11?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.489.13908316754263937.a2613d65-5012-428e-8936-df4b3295d7bd.5fe96ab4-000b-44eb-a706-d506daa5d44b?h=%i&format=jpg" }, { "gameTitle": "Gorogoa", @@ -2326,7 +2310,7 @@ "releaseDate": "21/05/2018", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/gorogoa/C41M2F4NWB2S", @@ -2334,21 +2318,22 @@ "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.5340.66945940929342019.3c8e01a6-6e60-4733-ada9-8cdf420e19fd.f5345cf2-78bc-4344-a751-68e3a4359030?h=%i&format=jpg" }, { - "gameTitle": "Grounded - Pr\u00e9via do Jogo", + "gameTitle": "Grounded", "gamePublisher": "Xbox Game Studios", "gameDeveloper": "Obsidian Entertainment", "gameGenres": [ - "A\u00e7\u00e3o e aventura" + "A\u00e7\u00e3o e aventura", + "RPG" ], - "releaseDate": "31/12/2799", + "releaseDate": "27/09/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, - "xcloudUrl": "https://www.xbox.com/%s/play/games/grounded---game-preview/9PJTHRNVH62H", - "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.44004.14280109286674604.07457100-a11d-4e1d-8c2b-59dd36bb9443.03777f72-96c3-46a2-8bee-f1769fdf8bfd?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.8802.14280109286674604.8532e419-a6b2-4606-82fb-02dacc72b615.ef0edbd4-c178-4b1c-bf85-71ae14854dc3?h=%i&format=jpg" + "xcloudUrl": "https://www.xbox.com/%s/play/games/grounded/9PJTHRNVH62H", + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.36912.14280109286674604.94f3a3e8-211f-41e5-ac9c-d948b5377852.4e9bf257-12e0-4f04-9239-671818df45b0?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.27514.14280109286674604.1fb359e4-01eb-4818-b992-b225ce4869c9.c9733025-0344-4e66-aff1-ee3bcf9016a7?h=%i&format=jpg" }, { "gameTitle": "HITMAN Trilogy", @@ -2360,8 +2345,8 @@ "releaseDate": "20/01/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/hitman-trilogy/9NN82NH949D5", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.10042.14144194933273826.3ced5741-3e78-4437-9d89-92e9ac9b74fc.0f724e5e-5cff-424d-9920-a7b0de11eec6?w=%i&h=%i", @@ -2377,7 +2362,7 @@ "releaseDate": "26/10/2015", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/halo-5-guardians/BRRC2BP0G9P0", @@ -2394,7 +2379,7 @@ "releaseDate": "08/12/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/halo-infinite-campaign/9NP1P1WFS0LB", @@ -2411,8 +2396,8 @@ "releaseDate": "20/02/2017", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/halo-wars-2-standard-edition/C42KCJCLX6MX", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.6988.66922732424733865.effc282c-0a95-45c2-8069-86e7e083b3aa.d9a002b9-654e-406f-bce9-4d9de652143a?w=%i&h=%i", @@ -2429,8 +2414,8 @@ "releaseDate": "19/12/2016", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/halo-wars-definitive-edition/BPRPQSKXTD1L", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.58465.68131417927341023.6f4f8f73-402d-42d7-8fff-a37b68438b32.76e8810a-db0d-4b39-9e12-5fd71c6c6ee6?w=%i&h=%i", @@ -2447,8 +2432,8 @@ "releaseDate": "22/12/2013", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/halo-spartan-assault/BV0K9LMLQ9W5", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.34586.70634858521726340.aed5ca97-d1dc-4d71-ae1f-b3f94bf8b727.2b005ed6-f545-40d3-b5f0-8905ca07b05d?w=%i&h=%i", @@ -2464,13 +2449,31 @@ "releaseDate": "14/11/2019", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/halo-the-master-chief-collection/9MT8PTGVHX2P", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.16930.13817186670444302.148c432a-9fce-4c7d-bf13-8a2bd3a527b3.99d16324-9915-41d7-a388-fa5dd98940cb?w=%i&h=%i", "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.36764.13817186670444302.148c432a-9fce-4c7d-bf13-8a2bd3a527b3.2a7b94f3-ed66-45b6-aaf3-337c18d442cd?h=%i&format=jpg" }, + { + "gameTitle": "Hardspace: Shipbreaker", + "gamePublisher": "Focus Entertainment", + "gameDeveloper": "Blackbird Interactive", + "gameGenres": [ + "A\u00e7\u00e3o e aventura", + "Simula\u00e7\u00e3o" + ], + "releaseDate": "20/09/2022", + "extraGameProperties": { + "isInGamePass": true, + "controllerSupport": false, + "touchControllerSupport": false + }, + "xcloudUrl": "https://www.xbox.com/%s/play/games/hardspace-shipbreaker/9ND8C4314ZZG", + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.11359.13552902647075103.9e24872e-3f43-4078-8279-1ddf37a77ab1.795f17b4-3acd-4226-91d9-5c6031d7899e?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.36125.13552902647075103.9e24872e-3f43-4078-8279-1ddf37a77ab1.246fb260-7ac0-4916-867b-dce60a943024?h=%i&format=jpg" + }, { "gameTitle": "Hellblade: Senua's Sacrifice", "gamePublisher": "Ninja Theory Ltd", @@ -2481,8 +2484,8 @@ "releaseDate": "10/04/2018", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/hellblade-senua's-sacrifice/C4Z7QM8FSXM2", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.51441.67453348098260763.a9f96429-c651-425e-97d2-e8861561f15f.73c36cb3-fa0c-4b94-9cdf-abc1f2037096?w=%i&h=%i", @@ -2499,7 +2502,7 @@ "releaseDate": "25/09/2018", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/hollow-knight-voidheart-edition/9MW9469V91LM", @@ -2516,7 +2519,7 @@ "releaseDate": "26/02/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/house-flipper/9NBFGKQLMV33", @@ -2534,30 +2537,12 @@ "releaseDate": "11/05/2017", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/human-fall-flat/BSMZH25V6V46", - "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.28166.69811231537758929.e4656d28-2761-45a1-87cc-d343cdef0293.30fd12ec-1698-4cf8-9509-1643edc1d771?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.65307.69811231537758929.e4656d28-2761-45a1-87cc-d343cdef0293.ad83806c-1b9f-4970-b38c-9718455f53a5?h=%i&format=jpg" - }, - { - "gameTitle": "I Am Fish", - "gamePublisher": "Curve Games", - "gameDeveloper": "Bossa Studios", - "gameGenres": [ - "A\u00e7\u00e3o e aventura", - "Outros" - ], - "releaseDate": "15/09/2021", - "extraGameProperties": { - "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true - }, - "xcloudUrl": "https://www.xbox.com/%s/play/games/i-am-fish/9MXGJ8JZL0LK", - "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.8027.13890660958509322.81a390b1-5ffb-4e5e-9b51-d8f3f2f45a2a.148b70a3-d43d-4a35-b602-a015b010c95c?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.17251.13890660958509322.81a390b1-5ffb-4e5e-9b51-d8f3f2f45a2a.4fee9909-360a-476f-9457-2c4a060f4977?h=%i&format=jpg" + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.36512.69811231537758929.8d40cea0-047e-48e5-89c1-01dd6268bc1f.74d99451-6cd4-48c0-8abf-75d91ab2fad4?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.25220.69811231537758929.8d40cea0-047e-48e5-89c1-01dd6268bc1f.11d1a979-c3bd-4094-8358-d4d5a5e74660?h=%i&format=jpg" }, { "gameTitle": "INSIDE", @@ -2570,7 +2555,7 @@ "releaseDate": "28/06/2016", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/inside/C17GQF31D617", @@ -2587,7 +2572,7 @@ "releaseDate": "27/08/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/immortal-realms-vampire-wars/9P4Q17HQ2WKW", @@ -2604,7 +2589,7 @@ "releaseDate": "30/08/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/immortality/9PM1905P9LQ6", @@ -2621,7 +2606,7 @@ "releaseDate": "02/12/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/immortals-fenyx-rising/C07KJZRH0L7S", @@ -2639,7 +2624,7 @@ "releaseDate": "14/02/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/infernax/9NK7HNCG0R8D", @@ -2656,31 +2641,13 @@ "releaseDate": "15/05/2017", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/injustice-2/BPKVH4C4XV4N", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.15492.68598211680266771.73ef9826-822a-4a0b-ab4a-4fe8fd87fc3b.fcf3f2a7-591f-4316-a3cc-9a6595d29db9?w=%i&h=%i", "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.52395.68598211680266771.73ef9826-822a-4a0b-ab4a-4fe8fd87fc3b.81db3eda-d4dd-440a-b266-1973f0472a82?h=%i&format=jpg" }, - { - "gameTitle": "Into the Pit", - "gamePublisher": "Humble Games", - "gameDeveloper": "Nullpointer Games", - "gameGenres": [ - "A\u00e7\u00e3o e aventura", - "Jogos de tiros" - ], - "releaseDate": "19/10/2021", - "extraGameProperties": { - "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": false - }, - "xcloudUrl": "https://www.xbox.com/%s/play/games/into-the-pit/9NCFNFTSBM96", - "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.39935.13564737612475991.b8ee2cbb-c69a-47d9-b4ee-7d6c7fb9fb80.59114524-43b4-4947-8b56-c2d76eaa2619?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.40817.13564737612475991.b8ee2cbb-c69a-47d9-b4ee-7d6c7fb9fb80.c9052279-3e10-4398-af70-41596e224a48?h=%i&format=jpg" - }, { "gameTitle": "It Takes Two - Vers\u00e3o Digital", "gamePublisher": "Electronic Arts", @@ -2691,7 +2658,7 @@ "releaseDate": "26/03/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/it-takes-two---digital-version/9NXVC0482QS5", @@ -2709,8 +2676,8 @@ "releaseDate": "22/05/2012", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/joy-ride-turbo/C1ZWH2BZ9TSF", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.55462.65697580773346286.de1a7dea-d35c-459d-a15c-a737811ee00f.6e8da1e2-791b-4bc8-aaf6-a2665f7cdc90?w=%i&h=%i", @@ -2727,7 +2694,7 @@ "releaseDate": "09/11/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/jurassic-world-evolution-2/9MWHMJ0SRBXV", @@ -2744,7 +2711,7 @@ "releaseDate": "06/11/2019", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/just-cause-4-reloaded/9P9MC8B7R5FP", @@ -2762,7 +2729,7 @@ "releaseDate": "10/08/2009", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/kameo/BV83SM3191S5", @@ -2779,8 +2746,8 @@ "releaseDate": "27/01/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/kentucky-route-zero-tv-edition/9P6FTM76L1S7", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.12186.14620558670939884.b282563f-ef8a-4a4d-8cd6-6780477a8cf6.661c5892-e5d4-40d3-973b-8431fe499724?w=%i&h=%i", @@ -2797,7 +2764,7 @@ "releaseDate": "04/03/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/kill-it-with-fire/9MZVSHQZ666K", @@ -2814,8 +2781,8 @@ "releaseDate": "19/09/2016", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/killer-instinct-definitive-edition/BVQ3FL3201P8", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.48860.71051199341094309.0502e995-3a0c-460f-bf9e-3401bb747a61.3decc6eb-56db-4491-8b1b-c9d06d4d5bc6?w=%i&h=%i", @@ -2831,8 +2798,8 @@ "releaseDate": "21/03/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/kraken-academy/9P87CGF1TCCX", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.17451.14093132429705053.80d7d0ce-fb78-4b3f-85e0-84bfb558041a.8594517f-cfdd-4bc2-a491-787adebd921c?w=%i&h=%i", @@ -2849,8 +2816,8 @@ "releaseDate": "01/09/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/lake/9N5GLFTT40SN", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.60812.14038361809481235.e1ae8557-13ac-43d8-8e4b-bc0fcab05ea7.6b36ea35-f3a1-4d28-bfa0-098b45e73243?w=%i&h=%i", @@ -2866,30 +2833,30 @@ "releaseDate": "09/08/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/lawn-mowing-simulator/9NPFJTM4HBH9", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.40592.14489216339344377.71f12ec3-85b6-4f74-8483-db150fb3fd51.800c13d5-b95e-454e-81a6-979ed2befbea?w=%i&h=%i", "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.17520.14489216339344377.71f12ec3-85b6-4f74-8483-db150fb3fd51.48f85cb5-808d-48c4-ab0a-303d843dac6c?h=%i&format=jpg" }, { - "gameTitle": "Lemnis Gate", - "gamePublisher": "Frontier Foundry", - "gameDeveloper": "Ratloop Games Canada", + "gameTitle": "Let's Build a Zoo", + "gamePublisher": "No More Robots", + "gameDeveloper": "Springloaded", "gameGenres": [ - "Jogos de tiros", + "Simula\u00e7\u00e3o", "Estrat\u00e9gia" ], - "releaseDate": "28/09/2021", + "releaseDate": "28/09/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, - "xcloudUrl": "https://www.xbox.com/%s/play/games/lemnis-gate/9NJG48NJ480C", - "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.62822.13681731712633836.33ade687-6181-4fc4-b5b9-d030dbce8422.a7170725-bcd0-41ad-8ea3-d246cea1d612?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.765.13681731712633836.33ade687-6181-4fc4-b5b9-d030dbce8422.accc2413-9949-44a8-849c-51d28f37ac3d?h=%i&format=jpg" + "xcloudUrl": "https://www.xbox.com/%s/play/games/let's-build-a-zoo/9P8N66DTG10T", + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.63900.14084512162357210.0d6eea09-167f-4aad-97d7-d4d17f848799.2a1722e7-328d-4bb3-b556-0d4acae1567b?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.15530.14084512162357210.0d6eea09-167f-4aad-97d7-d4d17f848799.9a461717-eb83-4a42-875e-7c96139197b1?h=%i&format=jpg" }, { "gameTitle": "Life is Strange: True Colors", @@ -2901,8 +2868,8 @@ "releaseDate": "09/09/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/life-is-strange-true-colors/9NFWSNN4JWKB", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.27723.13586428055135571.f12709ac-4fdc-444a-9eb3-a38d712ce6f7.310d4be1-bc01-4faa-98a6-6d4b976eb6dc?w=%i&h=%i", @@ -2919,8 +2886,8 @@ "releaseDate": "16/05/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/little-witch-in-the-woods-game-preview/9PM9ZVWT18WR", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.2960.14301619139286382.fe333953-9667-4a52-a6da-789301fea3ca.5aa04ac9-1d35-4f2b-bd14-b536034f06ea?w=%i&h=%i", @@ -2937,7 +2904,7 @@ "releaseDate": "23/10/2019", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/lonely-mountains-downhill/9MV6MCVLT8GR", @@ -2955,30 +2922,13 @@ "releaseDate": "02/05/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/loot-river/9N8C03GW2TRB", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.17035.14047756119637031.8bee70cc-a32a-4d5f-85a7-9d5e7e9b2403.8891593a-1ef2-46ab-aad9-2d4a399625f1?w=%i&h=%i", "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.40924.14047756119637031.8bee70cc-a32a-4d5f-85a7-9d5e7e9b2403.29e4c25c-890f-47c6-bc01-8c316225cc12?h=%i&format=jpg" }, - { - "gameTitle": "Lost Words: Beyond the Page", - "gamePublisher": "Modus Games", - "gameDeveloper": "Sketchbook Games", - "gameGenres": [ - "Plataforma" - ], - "releaseDate": "06/04/2021", - "extraGameProperties": { - "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true - }, - "xcloudUrl": "https://www.xbox.com/%s/play/games/lost-words-beyond-the-page/9NN16ML9S93V", - "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.9443.13751973233133839.d4158904-27b6-4c8d-b7a2-6647646659cd.595ec74c-2944-4c3a-8e64-335a4ce3df0d?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.60450.13751973233133839.d4158904-27b6-4c8d-b7a2-6647646659cd.fe5c09eb-d918-4913-bfe7-1f34b41dd6e1?h=%i&format=jpg" - }, { "gameTitle": "Lost in Random\u2122", "gamePublisher": "Electronic Arts", @@ -2990,8 +2940,8 @@ "releaseDate": "10/09/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/lost-in-random/9NVRJS95FLM9", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.57092.14393276044279732.41dd1f17-b490-46da-821f-ee63792ed90a.860d6901-f703-4d9c-89d7-240528cd607a?w=%i&h=%i", @@ -3007,8 +2957,8 @@ "releaseDate": "26/01/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/mlb-the-show-22-xbox-series-x-%7C-s/9MXM0G8RP4H4", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.32747.13891780821338361.3fb1a56d-0c2d-43c4-b10e-96729b18d908.5a83ba2e-0e26-417c-9e92-02a5429748d8?w=%i&h=%i", @@ -3025,7 +2975,7 @@ "releaseDate": "21/05/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/maneater/9P5B81KVDGP1", @@ -3042,7 +2992,7 @@ "releaseDate": "04/09/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/marvel's-avengers/BRX6HS1G5CDK", @@ -3059,7 +3009,7 @@ "releaseDate": "26/10/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/marvel's-guardians-of-the-galaxy/9PGLL77C201J", @@ -3077,7 +3027,7 @@ "releaseDate": "14/05/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/mass-effect-legendary-edition/9PKWHT7G60WQ", @@ -3094,7 +3044,7 @@ "releaseDate": "20/03/2017", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/mass-effect-andromeda/BZPR04V49BMH", @@ -3111,8 +3061,8 @@ "releaseDate": "06/07/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/matchpoint---tennis-championships/9P66GGSJR71M", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.54980.14625464772679282.0d11523a-1279-4a53-9b3a-c9af53b152b5.d7c5e229-c9dd-42f9-bc25-73b7a661e445?w=%i&h=%i", @@ -3129,13 +3079,49 @@ "releaseDate": "26/05/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/mechwarrior-5-mercenaries/9PB86W3JK8Z5", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.1453.14123304312086404.5dc09435-a0e3-402c-ba22-f58dbbaccd21.e2b9a345-d6e3-4983-ad7d-2d2c5c192d1c?w=%i&h=%i", "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.37063.14123304312086404.5dc09435-a0e3-402c-ba22-f58dbbaccd21.e9d54515-b582-4bc5-8994-795a0037a962?h=%i&format=jpg" }, + { + "gameTitle": "Medieval Dynasty", + "gamePublisher": "Toplitz Productions", + "gameDeveloper": "Render Cube", + "gameGenres": [ + "A\u00e7\u00e3o e aventura", + "RPG" + ], + "releaseDate": "06/10/2022", + "extraGameProperties": { + "isInGamePass": true, + "controllerSupport": false, + "touchControllerSupport": false + }, + "xcloudUrl": "https://www.xbox.com/%s/play/games/medieval-dynasty/9PDDP6ML6XHF", + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.26306.14156112272410024.03b91df3-d826-4d77-a692-6b75d9b18188.14e344a6-e6f9-43bd-8f8d-f6e965429119?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.63309.14156112272410024.03b91df3-d826-4d77-a692-6b75d9b18188.85b2f37e-0bd7-4de5-a925-bc86f2c59896?h=%i&format=jpg" + }, + { + "gameTitle": "Metal: Hellsinger", + "gamePublisher": "Funcom", + "gameDeveloper": "The Outsiders", + "gameGenres": [ + "A\u00e7\u00e3o e aventura", + "M\u00fasica" + ], + "releaseDate": "15/09/2022", + "extraGameProperties": { + "isInGamePass": true, + "controllerSupport": false, + "touchControllerSupport": false + }, + "xcloudUrl": "https://www.xbox.com/%s/play/games/metal-hellsinger/9PDXJP3805DN", + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.941.14211614393053975.a4ffed37-2d8b-4964-b012-03eb22bf47cc.6077b8e8-7907-409a-81b2-dd04488234ca?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.57354.14211614393053975.a4ffed37-2d8b-4964-b012-03eb22bf47cc.d3b3eebb-84f8-4ed6-9ad4-510a47f020c1?h=%i&format=jpg" + }, { "gameTitle": "Microsoft Flight Simulator: Standard Game of the Year Edition", "gamePublisher": "Xbox Game Studios", @@ -3146,7 +3132,7 @@ "releaseDate": "18/11/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/microsoft-flight-simulator-standard-game-of-the-ye/9MTJ74MKQM46", @@ -3163,7 +3149,7 @@ "releaseDate": "10/10/2017", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/middle-earth-shadow-of-war/9PDV8FKWP3B4", @@ -3181,31 +3167,13 @@ "releaseDate": "23/08/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/midnight-fight-express/9PH1Q5TKPQCQ", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.50615.14244962307093415.153d6882-d2ec-4660-a3c5-c9c093b7ed2d.7664d83e-89b3-44f2-bd2e-f32c3510e006?w=%i&h=%i", "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.59826.14244962307093415.153d6882-d2ec-4660-a3c5-c9c093b7ed2d.4c98d9f0-985b-49c7-8a41-a7a70d178171?h=%i&format=jpg" }, - { - "gameTitle": "Mighty Goose", - "gamePublisher": "PLAYISM", - "gameDeveloper": "Blastmode, MP2 Games", - "gameGenres": [ - "A\u00e7\u00e3o e aventura", - "Plataforma" - ], - "releaseDate": "05/06/2021", - "extraGameProperties": { - "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true - }, - "xcloudUrl": "https://www.xbox.com/%s/play/games/mighty-goose/9P3W7QMHR450", - "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.46588.14534578155452057.bdca336f-84fe-4e63-90ee-b457f0186833.30779d91-0425-4418-b2d7-cc36e4e88fda?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.44909.14534578155452057.bdca336f-84fe-4e63-90ee-b457f0186833.e7d59344-e216-480a-a424-2c61b0f4d970?h=%i&format=jpg" - }, { "gameTitle": "Mind Scanners", "gamePublisher": "Brave At Night", @@ -3217,26 +3185,23 @@ "releaseDate": "29/11/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/mind-scanners/9MV8J6MFJNQV", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.64687.13792918252035849.70cae5d6-a601-49fa-aa3f-fe57d9dc8f66.9dad009e-69a8-440f-aba9-c95ff93f087f?w=%i&h=%i", "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.31810.13792918252035849.70cae5d6-a601-49fa-aa3f-fe57d9dc8f66.05f7102e-6f01-4bb2-bacb-7208fd00fbd0?h=%i&format=jpg" - }, - { - "gameTitle": "Minecraft Dungeons", - "gamePublisher": "Xbox Game Studios", - "gameDeveloper": "Mojang Studios / \u202aDouble Eleven Limited", - "gameGenres": [ - "A\u00e7\u00e3o e aventura", - "RPG" - ], - "releaseDate": "26/05/2020", + }, + { + "gameTitle": "", + "gamePublisher": "", + "gameDeveloper": "", + "gameGenres": [], + "releaseDate": "", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/minecraft-dungeons/9N8NJ74FZTG9", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.33021.14045794648370014.2229d39b-90c3-496e-8fac-9987450ca4d8.1d642353-a1d9-490f-882f-e5f16a5b82de?w=%i&h=%i", @@ -3252,7 +3217,7 @@ "releaseDate": "06/06/2016", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/mirror's-edge-catalyst/C48LBRJJCP2L", @@ -3270,8 +3235,8 @@ "releaseDate": "08/12/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/monster-sanctuary/9MZNS9NZ97PF", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.50227.13871023289633408.edeba3ff-23a1-45dd-b6a3-ee86998577d7.6d86b053-b678-4040-8170-875f6344fbc0?w=%i&h=%i", @@ -3288,8 +3253,8 @@ "releaseDate": "16/12/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/monster-train/9NP4BGBLLLXM", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.48810.13730273714404372.ea561b73-8f7b-40a2-b473-ec2ebf0c6300.88bec4a9-c860-4583-b645-f44bd80755fb?w=%i&h=%i", @@ -3306,8 +3271,8 @@ "releaseDate": "25/10/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/moonglow-bay/9P7VCSGBP9KL", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.7691.14100376622407307.eeb47dd8-8d38-411a-9501-284e813ed3bb.fdc1735e-8942-4170-8ed8-653bd1ec8caf?w=%i&h=%i", @@ -3323,13 +3288,31 @@ "releaseDate": "29/05/2018", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/moonlighter/9P8XJRLCLH2P", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.23038.14078999020725962.ddb83977-3b2d-4498-aa21-0a1bdeb1cddc.b1c79423-8a23-4943-804b-c5333d258492?w=%i&h=%i", "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.24606.14078999020725962.ddb83977-3b2d-4498-aa21-0a1bdeb1cddc.a7338ebd-e2fa-4523-a136-b3789f1f6fb6?h=%i&format=jpg" }, + { + "gameTitle": "Moonscars", + "gamePublisher": "Humble Games", + "gameDeveloper": "Black Mermaid", + "gameGenres": [ + "A\u00e7\u00e3o e aventura", + "Plataforma" + ], + "releaseDate": "27/09/2022", + "extraGameProperties": { + "isInGamePass": true, + "controllerSupport": false, + "touchControllerSupport": false + }, + "xcloudUrl": "https://www.xbox.com/%s/play/games/moonscars/9P77VD8MGJX8", + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.48607.14609228948314679.57b5d232-e029-48c3-a08c-a51885c8f604.a75be4f6-a08c-465f-8452-bf3c2ee5da75?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.16286.14609228948314679.57b5d232-e029-48c3-a08c-a51885c8f604.af5bedd3-16ab-4c9d-a23d-deda8b3b585f?h=%i&format=jpg" + }, { "gameTitle": "Mortal Kombat 11", "gamePublisher": "Warner Bros. Games", @@ -3340,7 +3323,7 @@ "releaseDate": "22/04/2019", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/mortal-kombat-11/BTC0L0BW6LWC", @@ -3358,7 +3341,7 @@ "releaseDate": "18/08/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/mortal-shell-enhanced-edition/9PC2BJDXR2LK", @@ -3376,7 +3359,7 @@ "releaseDate": "21/04/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/motogp22/9P6N58X27150", @@ -3394,7 +3377,7 @@ "releaseDate": "04/12/2019", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/my-friend-pedro/9P16M6LF0QFH", @@ -3411,8 +3394,8 @@ "releaseDate": "22/10/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/my-friend-peppa-pig/9NDJLXD2X2DM", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.41714.13613420443671332.a6ea2e8e-4acd-4934-b589-2d8cfaba7189.2f819a75-49ec-4ddd-858c-0752a4ae517a?w=%i&h=%i", @@ -3428,7 +3411,7 @@ "releaseDate": "15/04/2019", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/my-time-at-portia/BX1FZX1X4132", @@ -3445,7 +3428,7 @@ "releaseDate": "23/06/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/naraka-bladepoint---standard-edition/9MVVDHS95RCL", @@ -3462,8 +3445,8 @@ "releaseDate": "09/06/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/ninja-gaiden-3-razor's-edge/9N27DBP8GNNB", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.34045.13957002730398149.0cea4e4d-b211-438d-b3fc-78fd52485184.fc4f1171-49f7-4812-b943-3ed19812f720?w=%i&h=%i", @@ -3479,8 +3462,8 @@ "releaseDate": "09/06/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/ninja-gaiden-%CF%83/9NZ5QW71X49G", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.19050.14486675416442203.186df2ad-99aa-4e4f-bcb4-cb37ca999946.df485081-ec17-460b-9e62-e385c1297574?w=%i&h=%i", @@ -3496,8 +3479,8 @@ "releaseDate": "09/06/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/ninja-gaiden-%CF%832/9PGSC3PW4N8Z", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.62138.14245467679473898.001107c4-7d89-4b24-ae55-6960d7565280.fde9e16e-7907-4d7f-802e-22f2da8e8667?w=%i&h=%i", @@ -3513,12 +3496,12 @@ "releaseDate": "07/11/2019", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/need-for-speed-heat/BRZZLBF5T245", - "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.11789.69435230515002378.5c54c210-6100-4e84-81d0-b92a5aadc00d.4503de6b-dcf7-4620-bed7-d912413cb91a?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.46186.69435230515002378.5c54c210-6100-4e84-81d0-b92a5aadc00d.019c1377-72ee-4d05-9084-1ab70452bb03?h=%i&format=jpg" + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.64382.69435230515002378.b30b404a-238a-48e8-8b5e-96664f17ed38.a02f1bcb-53dc-4074-adae-9bff70c7e646?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.54237.69435230515002378.b30b404a-238a-48e8-8b5e-96664f17ed38.02fe8a52-9076-42cd-abc5-521975a572b0?h=%i&format=jpg" }, { "gameTitle": "Need for Speed\u2122 Hot Pursuit Remastered", @@ -3531,12 +3514,12 @@ "releaseDate": "06/11/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/need-for-speed-hot-pursuit-remastered/9NMBJQ0265ZK", - "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.54645.13695403561576988.ee93f06a-1e4b-49d1-aa54-9b9583915442.1a1438a8-4154-40ee-94bd-51deda46184d?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.5450.13695403561576988.ee93f06a-1e4b-49d1-aa54-9b9583915442.cef738f8-7a52-40cb-b8c1-65d9e60e8007?h=%i&format=jpg" + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.50193.13695403561576988.5461aeea-bae0-45c6-b5d4-5d6c85d1216c.9a0f44da-d2ef-442a-a767-3ef1ff4650a6?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.47104.13695403561576988.5461aeea-bae0-45c6-b5d4-5d6c85d1216c.25dcbbc6-1380-4850-8611-16c0d37f7168?h=%i&format=jpg" }, { "gameTitle": "Neoverse", @@ -3549,8 +3532,8 @@ "releaseDate": "16/12/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/neoverse/9NNSTP6KJTZ9", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.15039.13732308681387652.912ddfff-827b-4ec6-879c-11fe5776733d.4e326538-4399-4261-915b-16889e375da8?w=%i&h=%i", @@ -3567,8 +3550,8 @@ "releaseDate": "21/08/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/new-super-lucky's-tale/9MZN3SMXN824", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.42417.13867280688858311.8624d86c-7857-440e-9303-9897a29ba67e.42b5def2-8e7f-4ff7-a75b-72354e44d97e?w=%i&h=%i", @@ -3585,13 +3568,30 @@ "releaseDate": "17/11/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/next-space-rebels/9PBGCRBQKXTP", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.64109.14119640268172716.d5337920-4722-41a0-b754-c6d32e905713.e82cc454-38a7-4868-8490-f79b73c8312f?w=%i&h=%i", "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.59031.14119640268172716.d5337920-4722-41a0-b754-c6d32e905713.5f306222-ac0a-43c5-adff-2debc38b87a3?h=%i&format=jpg" }, + { + "gameTitle": "Ni no Kuni Wrath of the White Witch\u2122 Remastered", + "gamePublisher": "Bandai Namco Entertainment America Inc.", + "gameDeveloper": "LEVEL-5 Inc.", + "gameGenres": [ + "RPG" + ], + "releaseDate": "15/09/2022", + "extraGameProperties": { + "isInGamePass": true, + "controllerSupport": false, + "touchControllerSupport": false + }, + "xcloudUrl": "https://www.xbox.com/%s/play/games/ni-no-kuni-wrath-of-the-white-witch-remastered/9P7SL78VHVMF", + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.57893.14101239125163632.01de9600-be68-4ca2-ad44-3bd38be94a52.4b2ed267-ccba-45eb-b8bd-97484e350d07?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.11224.14101239125163632.01de9600-be68-4ca2-ad44-3bd38be94a52.115cbde1-1f23-46f0-8ab3-13e6fbcd5ea1?h=%i&format=jpg" + }, { "gameTitle": "No Man's Sky", "gamePublisher": "Hello Games", @@ -3603,12 +3603,12 @@ "releaseDate": "23/07/2018", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/no-man's-sky/BQVQTL3PCH05", - "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.14762.68818099466568894.b6fa22e3-f614-4484-ae3e-1c84407633d4.4295004d-bfcc-48ee-aba4-b0e460071a04?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.57784.68818099466568894.b6fa22e3-f614-4484-ae3e-1c84407633d4.f2e11e3a-1a89-4938-a8f5-06545dad347a?h=%i&format=jpg" + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.59103.68818099466568894.5fae376b-4fd4-4e61-a81c-a5575757b3b1.f5794177-89b9-4d01-b006-1402f1aae16c?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.15580.68818099466568894.5fae376b-4fd4-4e61-a81c-a5575757b3b1.9532faae-3b75-43f9-ac89-228908154773?h=%i&format=jpg" }, { "gameTitle": "Nobody Saves the World", @@ -3621,8 +3621,8 @@ "releaseDate": "18/01/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/nobody-saves-the-world/9NFZ65KKJ10X", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.53413.13585830814774327.d6e142bb-27e2-4109-8139-edac768eca10.bd597240-e065-42b4-a809-b42e4a7a9815?w=%i&h=%i", @@ -3639,7 +3639,7 @@ "releaseDate": "06/05/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/nongunz-doppelganger-edition/9NRDVCW02JD7", @@ -3656,7 +3656,7 @@ "releaseDate": "08/09/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/nuclear-throne/9PCCFDH6LMQJ", @@ -3673,8 +3673,8 @@ "releaseDate": "24/03/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/octopath-traveler/9N9606CC950J", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.18141.13539010844025035.cd25451c-c47c-45c8-b378-724488a9e769.8071ec1d-5580-4953-94a4-08c603c7e808?w=%i&h=%i", @@ -3690,7 +3690,7 @@ "releaseDate": "16/06/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/omori/9P8WMQ1S4TF9", @@ -3707,8 +3707,8 @@ "releaseDate": "27/03/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/one-piece-pirate-warriors-4/9N6HB778ZWP2", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.29551.14013874404154427.01749ccd-5277-41b8-9db6-ca15905ced80.a8c1d3c0-4e29-4d7c-98de-5c32552fec0a?w=%i&h=%i", @@ -3725,7 +3725,7 @@ "releaseDate": "24/08/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/opus-echo-of-starsong---full-bloom-edition/9NKKDCVR3VW9", @@ -3743,7 +3743,7 @@ "releaseDate": "31/03/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/outriders/C083G6BGJ334", @@ -3761,7 +3761,7 @@ "releaseDate": "28/01/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/olija/9N6PB00DXQ7H", @@ -3779,8 +3779,8 @@ "releaseDate": "10/11/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/one-step-from-eden/9N4K8K2ZGF1L", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.55511.13981836529399843.3570f80e-7819-4f87-b589-3809aeb668e9.ddcae108-9ddc-424e-9d20-08456c042346?w=%i&h=%i", @@ -3797,7 +3797,7 @@ "releaseDate": "10/03/2016", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/ori-and-the-blind-forest-definitive-edition/BW85KQB8Q31M", @@ -3815,7 +3815,7 @@ "releaseDate": "11/03/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/ori-and-the-will-of-the-wisps/9N8CD0XZKLP4", @@ -3833,7 +3833,7 @@ "releaseDate": "29/05/2019", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/outer-wilds/C596FKDKMQN7", @@ -3850,8 +3850,8 @@ "releaseDate": "06/08/2018", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/overcooked-2/BVJLKDG2TX8H", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.60458.70952388438497888.9a8a7127-1933-427d-b864-f4857d4c02fd.734afa54-8396-4590-8a61-9565e4eeca71?w=%i&h=%i", @@ -3868,8 +3868,8 @@ "releaseDate": "26/05/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/pac-man-museum/9P6W2Q41BB8V", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.41708.14612183358312597.ac18d1d8-4c6f-4fc0-aa76-31549ff4c4cc.27daf2c6-bb6f-45f5-95e6-81f19c23b533?w=%i&h=%i", @@ -3886,8 +3886,8 @@ "releaseDate": "05/11/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/paw-patrol-mighty-pups-save-adventure-bay/9N3TF03KNTBD", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.3013.13996206863599819.e2c5aea7-cee9-4965-bcf2-983a449c260d.3492e484-91a4-4558-b189-66444c715f51?w=%i&h=%i", @@ -3904,13 +3904,31 @@ "releaseDate": "13/08/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/paw-patrol-the-movie-adventure-city-calls/9NVN8NSXDK41", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.52763.14390988319138042.36b13a64-9b0f-4a63-975d-6accaeba2284.1e37bfc8-9556-4feb-8d93-f976b08ef10c?w=%i&h=%i", "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.42826.14390988319138042.36b13a64-9b0f-4a63-975d-6accaeba2284.2f1fc250-8ed1-42e1-bf2f-bef318166a0c?h=%i&format=jpg" }, + { + "gameTitle": "Patrulha Canina: Grand Prix", + "gamePublisher": "Outright Games Ltd.", + "gameDeveloper": "3DClouds", + "gameGenres": [ + "Fam\u00edlia e crian\u00e7as", + "A\u00e7\u00e3o e aventura" + ], + "releaseDate": "29/09/2022", + "extraGameProperties": { + "isInGamePass": true, + "controllerSupport": false, + "touchControllerSupport": false + }, + "xcloudUrl": "https://www.xbox.com/%s/play/games/paw-patrol-grand-prix/9MWBT3HFCZ3Z", + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.30417.13842132658396836.fba80705-9bc9-45ad-84f9-621f75fe99ec.63412d4a-24e5-449a-9622-75435adb7a73?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.53527.13842132658396836.fba80705-9bc9-45ad-84f9-621f75fe99ec.a7d39a33-f2c3-408b-a88d-4ef40eb5c446?h=%i&format=jpg" + }, { "gameTitle": "Paradise Killer", "gamePublisher": "Fellow Traveller", @@ -3922,8 +3940,8 @@ "releaseDate": "16/03/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/paradise-killer/9N673ZL1TCS7", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.55008.14023862983584172.71823e2e-c6b2-4372-a1b9-ec0708e514ce.1e206981-3371-4322-90e7-9da6f6a051dc?w=%i&h=%i", @@ -3939,8 +3957,8 @@ "releaseDate": "08/12/2013", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/peggle-2/BNCZHKWRZ7BR", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.63323.67897516232762656.798d5423-ae25-4369-b9f2-33205af62a6f.a1c62ace-b09e-417f-913e-528d6f4ca5e6?w=%i&h=%i", @@ -3957,7 +3975,7 @@ "releaseDate": "10/08/2009", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/perfect-dark-zero/BZF7N4FQWHNR", @@ -3975,8 +3993,8 @@ "releaseDate": "18/12/2019", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/phoenix-point/9P1P5Q3BNM7J", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.155.14507726714197033.ea391b48-d8cb-4724-a6cb-765168bd5161.3cfc32f8-f682-490e-9e59-cd6548a4c102?w=%i&h=%i", @@ -3992,7 +4010,7 @@ "releaseDate": "11/03/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/pikuniku/9N8WRDC25K6J", @@ -4010,8 +4028,8 @@ "releaseDate": "27/01/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/pillars-of-eternity-ii-deadfire---ultimate-edition/9PJD2KMX7TZ6", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.10942.14218490899188575.a8c726f9-aa48-4378-bee2-0dffc21a7089.4b82a2de-3303-4ebf-aa9e-168b159f6207?w=%i&h=%i", @@ -4028,8 +4046,8 @@ "releaseDate": "28/08/2017", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/pillars-of-eternity-complete-edition/BS34VNW7H61F", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.15487.69508748727770428.7ce00ad4-485c-4664-819a-1d17af316267.8617d93c-eaf0-497c-b0f5-2f0e6102e9ff?w=%i&h=%i", @@ -4045,7 +4063,7 @@ "releaseDate": "24/02/2014", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/plants-vs.-zombies-garden-warfare/BTJ0T8C04ZBV", @@ -4062,7 +4080,7 @@ "releaseDate": "18/10/2019", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/plants-vs.-zombies-battle-for-neighborville/C4HZC7LJG6PX", @@ -4079,7 +4097,7 @@ "releaseDate": "22/02/2016", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/plants-vs.-zombies-garden-warfare-2/BNRH7BRC1D02", @@ -4096,7 +4114,7 @@ "releaseDate": "25/03/2019", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/power-rangers-battle-for-the-grid/9P5VMG8D4P4B", @@ -4113,8 +4131,8 @@ "releaseDate": "14/07/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/powerwash-simulator/9NHDJC0NW20M", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.60360.13631853399995812.7c8d5b79-31b8-46af-9143-329dfb697258.813651fd-f64f-4d40-a513-0584c3e6d6a5?w=%i&h=%i", @@ -4130,13 +4148,31 @@ "releaseDate": "04/05/2017", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/prey/BQMVWCMB8P59", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.11350.69234794984509140.ef3477c5-d6c7-4bd4-b5c7-7664d0e9e1be.56e552ce-a8b5-40eb-ae32-c7cefd77e069?w=%i&h=%i", "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.55797.69234794984509140.ef3477c5-d6c7-4bd4-b5c7-7664d0e9e1be.22c0f565-2056-48ca-aa9c-85e280ff78f2?h=%i&format=jpg" }, + { + "gameTitle": "Prodeus", + "gamePublisher": "Humble Games", + "gameDeveloper": "Bounding Box Software Inc.", + "gameGenres": [ + "A\u00e7\u00e3o e aventura", + "Jogos de tiros" + ], + "releaseDate": "23/06/2021", + "extraGameProperties": { + "isInGamePass": true, + "controllerSupport": false, + "touchControllerSupport": false + }, + "xcloudUrl": "https://www.xbox.com/%s/play/games/prodeus/9MZRSLLWKWDV", + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.13041.13864617007662897.01825ec5-fdc1-49fc-a5ac-f29f1860b3d2.b9a8b49a-0945-4ea8-a389-1cc6ba14ba50?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.9406.13864617007662897.01825ec5-fdc1-49fc-a5ac-f29f1860b3d2.4de0b1f4-bc29-45f6-9f06-cb0449d3d4d3?h=%i&format=jpg" + }, { "gameTitle": "Project Wingman", "gamePublisher": "Humble Games", @@ -4148,7 +4184,7 @@ "releaseDate": "28/07/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/project-wingman/9NQ73XB1Q5ZG", @@ -4166,8 +4202,8 @@ "releaseDate": "31/03/2005", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/psychonauts/C5HHPG1TXDNG", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.18666.67203256484290113.fa47f972-08bc-4a6e-a86b-1114b30416e6.4bca37aa-490d-47c6-9385-dd7618a5c6eb?w=%i&h=%i", @@ -4184,8 +4220,8 @@ "releaseDate": "24/08/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/psychonauts-2/9NBR2VXT87SJ", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.17302.13578175979543723.424401c3-5602-4e35-abfc-c00f9156296a.e6d1e593-0006-4b73-886e-dd37b6626198?w=%i&h=%i", @@ -4202,8 +4238,8 @@ "releaseDate": "20/01/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/pupperazzi/9P34LH5ZWBVG", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.9496.14545000756331709.fe0b8e3c-108f-4f54-a7d0-a2b1eded6bbe.eabd1905-e86b-417c-8694-e08cb97d72b2?w=%i&h=%i", @@ -4219,7 +4255,7 @@ "releaseDate": "18/08/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/quake/9P1Z43KRNQD4", @@ -4237,7 +4273,7 @@ "releaseDate": "03/10/2011", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/rage/BR27BSZ2M3SR", @@ -4255,7 +4291,7 @@ "releaseDate": "13/05/2019", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/rage-2/C2DCJ95ZXBMS", @@ -4273,8 +4309,8 @@ "releaseDate": "25/04/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/research-and-destroy/9NNZJ389GSW2", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.16507.13733601761067019.0d7183b3-e7b3-48cd-9ed1-a4a0444fb623.88d187de-1ddd-4b84-abba-68689e8a3c09?w=%i&h=%i", @@ -4291,8 +4327,8 @@ "releaseDate": "31/10/2019", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/race-with-ryan/9N1JLJR48FBG", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.57033.13904742134987369.fd462387-ec74-4545-a15b-c5500d99e660.e38df00e-9a2f-48ad-8728-3af751b1817a?w=%i&h=%i", @@ -4308,7 +4344,7 @@ "releaseDate": "13/09/2016", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/recore/9NBLGGH1Z6FQ", @@ -4326,7 +4362,7 @@ "releaseDate": "19/08/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/recompile/9PDRJWHBSK88", @@ -4344,31 +4380,13 @@ "releaseDate": "16/12/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/record-of-lodoss-war-deedlit-in-wonder-labyrinth-/9NRBH9HS807L", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.10926.14386120322819171.2fc4013e-47df-4a11-be12-356830abf1b1.0cef0785-64a2-402f-ab1b-cc19dfd1f741?w=%i&h=%i", "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.51415.14386120322819171.2fc4013e-47df-4a11-be12-356830abf1b1.c0812796-7c40-41e8-b774-fc7504dfa489?h=%i&format=jpg" }, - { - "gameTitle": "Ring of Pain", - "gamePublisher": "Humble Games", - "gameDeveloper": "Simon Boxer, Twice Different", - "gameGenres": [ - "Cartas e tabuleiro", - "RPG" - ], - "releaseDate": "13/10/2021", - "extraGameProperties": { - "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true - }, - "xcloudUrl": "https://www.xbox.com/%s/play/games/ring-of-pain/9MZCCHNRK9R1", - "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.54804.13873084786078744.2e36af82-a094-4c51-8b20-bfcf3b90233a.173d9e6e-5ca7-4143-845d-d4d18d0b16b0?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.746.13873084786078744.2e36af82-a094-4c51-8b20-bfcf3b90233a.1609c875-d98a-4a69-8107-c8a54e667f73?h=%i&format=jpg" - }, { "gameTitle": "Road 96", "gamePublisher": "Ravenscourt Games", @@ -4380,7 +4398,7 @@ "releaseDate": "14/04/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/road-96/9NVBKDF85W8T", @@ -4398,8 +4416,8 @@ "releaseDate": "01/12/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/rubber-bandits/9PL36RW9ZTPW", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.26161.14250942844501146.afc9b68d-bea3-4e5a-8e85-e060a99b7a83.c11680cb-1676-4bec-ab7d-ca262614f3fd?w=%i&h=%i", @@ -4415,7 +4433,7 @@ "releaseDate": "31/10/2017", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/rush-a-disneypixar-adventure/9P3PL76N0KWZ", @@ -4433,8 +4451,8 @@ "releaseDate": "24/06/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/scarlet-nexus/9N9RMHTJX41P", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.11684.13531489140319204.2e417a21-11c1-4902-a4f1-8ac2c24c42b2.db8694a7-65f4-4932-ad63-c240816b2f95?w=%i&h=%i", @@ -4450,7 +4468,7 @@ "releaseDate": "14/11/2019", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/star-wars-jedi-fallen-order/C2CSDTSCBZ0C", @@ -4467,7 +4485,7 @@ "releaseDate": "16/11/2017", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/star-wars-battlefront-ii/C0GWTPD0S8S1", @@ -4485,30 +4503,29 @@ "releaseDate": "02/10/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/star-wars-squadrons/BV9CWVQWNS4P", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.49564.71371953440216666.508e0708-a814-4f11-8420-5f620fd8ce09.6a0698b5-ba6b-4f01-8338-015ad9537a91?w=%i&h=%i", "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.25186.71371953440216666.508e0708-a814-4f11-8420-5f620fd8ce09.60cc5eb5-7852-4e4c-8558-45342330e331?h=%i&format=jpg" }, { - "gameTitle": "Sable", - "gamePublisher": "Raw Fury", - "gameDeveloper": "Shedworks", + "gameTitle": "Scorn", + "gamePublisher": "Kepler Interactive", + "gameDeveloper": "Ebb Software", "gameGenres": [ - "A\u00e7\u00e3o e aventura", - "M\u00fasica" + "A\u00e7\u00e3o e aventura" ], - "releaseDate": "22/09/2021", + "releaseDate": "14/10/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, - "xcloudUrl": "https://www.xbox.com/%s/play/games/sable/9MZ4V4RG0W81", - "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.38664.13877048315750586.5e908d8a-c86a-4f67-bfe4-83508748e166.11b9930f-f76b-424a-8872-22b09c1f4ec9?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.14589.13877048315750586.5e908d8a-c86a-4f67-bfe4-83508748e166.242bb53b-47fa-481e-a226-5b5bf89fc5f0?h=%i&format=jpg" + "xcloudUrl": "https://www.xbox.com/%s/play/games/scorn/9NM3TNRPQXLR", + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.51381.13699799412731780.9f7b812e-456c-430e-8cec-380f1ca9e4a2.dd9f4725-f6e0-4fe4-9484-9d5f22682786?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.16661.13699799412731780.1afb5b8c-d3cf-40b3-aa5e-f5e01adefd6c.71e32c0e-4c10-4a4b-a813-3478373b1769?h=%i&format=jpg" }, { "gameTitle": "Sea of Thieves", @@ -4520,8 +4537,8 @@ "releaseDate": "20/03/2018", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/sea-of-thieves/9P2N57MC619K", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.21319.14554784103656548.6c0bfca6-ceff-4368-9bde-2fe50f344136.c8d6c767-18a9-49cd-b9ca-4cc9a3a336e5?w=%i&h=%i", @@ -4538,7 +4555,7 @@ "releaseDate": "31/12/2798", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/second-extinction-game-preview/9P9JZLNFQ9PT", @@ -4555,7 +4572,7 @@ "releaseDate": "23/10/2019", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/secret-neighbor/9P7GBPGT90L3", @@ -4573,7 +4590,7 @@ "releaseDate": "06/12/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/serious-sam-4/9N5521ZQMQMJ", @@ -4591,7 +4608,7 @@ "releaseDate": "21/06/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/shadowrun-returns/9N6PHQ93Z451", @@ -4609,7 +4626,7 @@ "releaseDate": "21/06/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/shadowrun-dragonfall---director's-cut/9PKJTP6DTND3", @@ -4627,7 +4644,7 @@ "releaseDate": "21/06/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/shadowrun-hong-kong---extended-edition/9N7V5R3VLMJZ", @@ -4645,7 +4662,7 @@ "releaseDate": "16/03/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/shredders/9N4PGNQQ7ZFK", @@ -4662,31 +4679,13 @@ "releaseDate": "22/09/2014", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/skate-3/BNKDKQXMXRR2", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.25388.68005754082254855.39795a60-73cf-4461-87d9-7f112c30c43c.7d99d88b-5b61-4951-9de7-34e5ddad1df2?w=%i&h=%i", "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.57264.68005754082254855.39795a60-73cf-4461-87d9-7f112c30c43c.a9fe1ef9-f8df-4ac1-89c1-cbd3a5f1b852?h=%i&format=jpg" }, - { - "gameTitle": "SkateBIRD", - "gamePublisher": "Glass Bottom Games", - "gameDeveloper": "Glass Bottom Games & Plastic Fern Studios", - "gameGenres": [ - "Fam\u00edlia e crian\u00e7as", - "Corrida e voo" - ], - "releaseDate": "15/09/2021", - "extraGameProperties": { - "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true - }, - "xcloudUrl": "https://www.xbox.com/%s/play/games/skatebird/9PN7NK4D9VCH", - "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.708.14353718102909470.9cc2f7fc-9593-4ede-8a30-6f9a57a11cc8.02e7f212-c898-4fae-9059-dbf519f64fa7?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.20589.14353718102909470.9cc2f7fc-9593-4ede-8a30-6f9a57a11cc8.5656d121-315b-4061-9948-1151804de111?h=%i&format=jpg" - }, { "gameTitle": "Skul: The Hero Slayer", "gamePublisher": "NEOWIZ", @@ -4698,7 +4697,7 @@ "releaseDate": "21/10/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/skul-the-hero-slayer/9NW4Z3HPJVKW", @@ -4716,30 +4715,30 @@ "releaseDate": "13/08/2019", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/slay-the-spire/9P6W46XMDJM5", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.17795.14612220527269160.ea029917-6726-4b37-a510-8449863efad4.b02e1597-5ccb-4d20-84de-4c53b702bcbb?w=%i&h=%i", "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.23915.14612220527269160.ea029917-6726-4b37-a510-8449863efad4.26be57ed-6cf3-48da-9c65-eb533fed3b76?h=%i&format=jpg" }, { - "gameTitle": "Slime Rancher", + "gameTitle": "Slime Rancher 2", "gamePublisher": "Monomi Park", "gameDeveloper": "Monomi Park", "gameGenres": [ "A\u00e7\u00e3o e aventura", - "Outros" + "Jogos de tiros" ], - "releaseDate": "31/07/2017", + "releaseDate": "22/09/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, - "xcloudUrl": "https://www.xbox.com/%s/play/games/slime-rancher/C2NC88M7NWZ1", - "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.31719.65571960709588388.6e3322f5-d49a-48f6-ac1e-c5450bd5b3e2.114ce25e-4e9b-4a53-bfc9-5eb77a194e2a?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.12517.65571960709588388.6e3322f5-d49a-48f6-ac1e-c5450bd5b3e2.fb31476b-29e2-4699-b180-b2ab3385b7e4?h=%i&format=jpg" + "xcloudUrl": "https://www.xbox.com/%s/play/games/slime-rancher-2/9PHFJ0N31NV1", + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.65089.14232893733292770.c4910fc1-e043-4370-be7c-79114ae9c0cf.d736574b-a3ed-4925-a26b-c05b56e621a5?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.56117.14232893733292770.c4910fc1-e043-4370-be7c-79114ae9c0cf.22788af6-315d-4873-a561-751d3b6e3fe7?h=%i&format=jpg" }, { "gameTitle": "Sniper Elite 4", @@ -4752,7 +4751,7 @@ "releaseDate": "13/02/2017", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/sniper-elite-4/BZ5VLVX84STW", @@ -4770,7 +4769,7 @@ "releaseDate": "25/05/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/sniper-elite-5/9PP8Q82H79LC", @@ -4787,7 +4786,7 @@ "releaseDate": "17/05/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/snowrunner/9PNRSC0J6DT8", @@ -4805,7 +4804,7 @@ "releaseDate": "27/05/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/solasta-crown-of-the-magister/9N1KQPLTR7S5", @@ -4823,8 +4822,8 @@ "releaseDate": "07/12/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/space-warlord-organ-trading-simulator/9NVD5DB5T3HD", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.2769.14396653708129733.be3550ae-ecb9-49ec-9472-c70a3c588ca1.553ca869-878d-46a5-8efe-10b83d9aa248?w=%i&h=%i", @@ -4841,8 +4840,8 @@ "releaseDate": "06/06/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/spacelines-from-the-far-out/9N23WV1HGLTQ", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.38917.13959665698666699.3d366e8c-44dc-4996-8b18-05749431b95e.4f5f537e-197a-41cd-a071-f956879553aa?w=%i&h=%i", @@ -4859,13 +4858,31 @@ "releaseDate": "12/01/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/spelunky-2/9PM85QK6C13H", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.27081.14298096177274930.caec21fb-7c68-4a6c-b169-f9b7429b0fcd.d5428b70-a412-41ed-9a2c-0b36ac91c370?w=%i&h=%i", "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.10415.14298096177274930.caec21fb-7c68-4a6c-b169-f9b7429b0fcd.9946e755-ccd7-4438-af6f-0e63da99c4a2?h=%i&format=jpg" }, + { + "gameTitle": "SpiderHeck", + "gamePublisher": "tinyBuild", + "gameDeveloper": "Neverjam", + "gameGenres": [ + "A\u00e7\u00e3o e aventura", + "Outros" + ], + "releaseDate": "22/09/2022", + "extraGameProperties": { + "isInGamePass": true, + "controllerSupport": false, + "touchControllerSupport": false + }, + "xcloudUrl": "https://www.xbox.com/%s/play/games/spiderheck/9N0TRF57SMQH", + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.49869.13918689285493336.0819ed4c-c94e-42c7-bd95-af9916211f52.ee71f670-1904-4520-89fe-e3946aa7f270?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.57425.13918689285493336.0819ed4c-c94e-42c7-bd95-af9916211f52.e581e622-2309-4e27-aae4-65e17506a0d1?h=%i&format=jpg" + }, { "gameTitle": "Stardew Valley", "gamePublisher": "ConcernedApe", @@ -4877,8 +4894,8 @@ "releaseDate": "13/12/2016", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/stardew-valley/C3D891Z6TNQM", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.49352.65985311967005000.4f51b5e9-febf-4990-8951-33ba59b634c9.aace9b9e-b001-46eb-a39b-08b1332810aa?w=%i&h=%i", @@ -4895,7 +4912,7 @@ "releaseDate": "22/05/2018", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/state-of-decay-2-juggernaut-edition/9NT4X7P8B9NB", @@ -4913,7 +4930,7 @@ "releaseDate": "25/02/2019", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/stellaris-console-edition/BWL72GR7Z7GK", @@ -4931,31 +4948,13 @@ "releaseDate": "03/12/2018", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/subnautica/BX3S1Q5DVHRD", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.19794.63409341877910445.4fd452e1-c3ee-4448-a0f8-ac6eb6bdaabf.8fe60020-9cc9-42c9-af2a-bf7b08cb5e13?w=%i&h=%i", "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.23135.63409341877910445.4fd452e1-c3ee-4448-a0f8-ac6eb6bdaabf.5a02df2f-4cea-4002-856b-2f4f478da7e9?h=%i&format=jpg" }, - { - "gameTitle": "Subnautica: Below Zero", - "gamePublisher": "Unknown Worlds Entertainment, Inc.", - "gameDeveloper": "Unknown Worlds Entertainment, Inc.", - "gameGenres": [ - "A\u00e7\u00e3o e aventura", - "Outros" - ], - "releaseDate": "14/05/2021", - "extraGameProperties": { - "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": false - }, - "xcloudUrl": "https://www.xbox.com/%s/play/games/subnautica-below-zero/9NDCJXL11096", - "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.63253.13546341381523259.8f30b71b-aac8-4816-a999-212ef85f8876.d2421f4e-6adb-427e-ad45-bb44e9ba125b?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.15748.13546341381523259.8f30b71b-aac8-4816-a999-212ef85f8876.6d076046-21b8-4345-bb56-cb568fd7fb66?h=%i&format=jpg" - }, { "gameTitle": "Super Mega Baseball 3", "gamePublisher": "Electronic Arts", @@ -4967,8 +4966,8 @@ "releaseDate": "13/05/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/super-mega-baseball-3/9NP6V9LFVJ87", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.12287.13728510900587088.c32ad4cb-c837-4a7f-ab8d-c3d9ca2cb384.15cf7c9c-94b9-441e-99f5-b58eb5e57040?w=%i&h=%i", @@ -4985,8 +4984,8 @@ "releaseDate": "07/07/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/superliminal/9NVR4ZQKNBSB", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.47663.14393569011623061.24d2b16b-20df-48f4-b265-623d2c0e948a.37ffa286-743f-4c55-9e7d-7c93def066a0?w=%i&h=%i", @@ -5003,7 +5002,7 @@ "releaseDate": "21/10/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/supraland/9PN6MTJX8LZD", @@ -5021,7 +5020,7 @@ "releaseDate": "02/09/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/surgeon-simulator-2/9NPPK20VCTGM", @@ -5039,8 +5038,8 @@ "releaseDate": "22/10/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/transformers-battlegrounds/9PCQRLT7C2BH", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.28464.14168906857029084.1dec8aac-a444-4171-afe3-510e35a0dfa3.4307eb30-534c-4cec-908f-9b70dd88b95a?w=%i&h=%i", @@ -5056,8 +5055,8 @@ "releaseDate": "16/03/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/tunic/9NLRT31Z4RWM", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.5223.13702044937897358.8701ab78-da18-4c36-8c1e-3d4e6dfd60c9.31c8ed6f-acf1-4cf2-9863-640fe319abc3?w=%i&h=%i", @@ -5074,8 +5073,8 @@ "releaseDate": "22/09/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/tainted-grail-conquest/9MZGGWHPKQ4C", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.20262.13875132150834532.ace67c6c-ec94-4b40-8c63-1fe7e6049203.ed00104f-535d-4b8a-9052-2dcaa3e702ba?w=%i&h=%i", @@ -5091,8 +5090,8 @@ "releaseDate": "16/06/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/teenage-mutant-ninja-turtles-shredder's-revenge/9NS3673HVH41", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.59000.14375592271313618.c7999e35-c8d7-49d4-b3fa-e5e1009423d7.a816f588-b6ba-46c0-8f39-54ca543455cf?w=%i&h=%i", @@ -5108,8 +5107,8 @@ "releaseDate": "27/08/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/tell-me-why-chapters-1-3/9NF83PRZK6K3", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.56500.13599353568798630.567fc0f9-a81e-456c-a9ee-55bb0bb153b5.a110b76d-abae-4dd7-a578-a796ea66ff53?w=%i&h=%i", @@ -5125,8 +5124,8 @@ "releaseDate": "28/04/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/telling-lies/9NLHWTCWLKGX", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.9486.13711287244755811.601b477c-0175-48da-8585-ae8d926ee15d.6d1bc680-0946-4ac2-a288-84ab77630eed?w=%i&h=%i", @@ -5143,7 +5142,7 @@ "releaseDate": "13/11/2014", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/terraria/BTNPS60N3114", @@ -5161,31 +5160,13 @@ "releaseDate": "31/12/2799", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/the-anacrusis-game-preview/9P9S593SLMV7", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.51812.14132627781219400.b75eb479-8d85-476a-9b12-d9044cad7c6e.6e935896-30f8-4e35-8a8c-c807747adc55?w=%i&h=%i", "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.51176.14132627781219400.e2eafad1-9336-41a2-a8bc-d64f901c1136.89ce799a-9fb2-46ae-afb2-1647846e6252?h=%i&format=jpg" }, - { - "gameTitle": "The Artful Escape", - "gamePublisher": "Annapurna Interactive", - "gameDeveloper": "Beethoven & Dinosaur", - "gameGenres": [ - "A\u00e7\u00e3o e aventura", - "M\u00fasica" - ], - "releaseDate": "09/09/2021", - "extraGameProperties": { - "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true - }, - "xcloudUrl": "https://www.xbox.com/%s/play/games/the-artful-escape/9NGH2MTP0T44", - "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.5453.13650141632747063.62f34b9f-cd2f-4686-828d-f7476b04f0fa.44164bd6-3268-49ac-a3f4-efe0a0a0b8ae?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.56775.13650141632747063.62f34b9f-cd2f-4686-828d-f7476b04f0fa.855c247d-319c-4a15-81e7-db97e981d30a?h=%i&format=jpg" - }, { "gameTitle": "The Ascent", "gamePublisher": "Curve Games", @@ -5197,8 +5178,8 @@ "releaseDate": "29/07/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/the-ascent/C27QL5JBKQ8M", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.31847.65332188737297236.e956bc32-e423-4920-b547-86181e7ed68d.75126036-bcfe-471a-80ff-394c854dd7d2?w=%i&h=%i", @@ -5215,8 +5196,8 @@ "releaseDate": "18/06/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/the-bard's-tale-arpg-remastered-and-resnarkled/9PN3VDFTB5HZ", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.44758.14351919773829236.17768c0e-ff0d-4fe7-86a5-a0cdd0bfe3a6.697c7bb1-b26f-4759-a90b-d2dbac5e5b2e?w=%i&h=%i", @@ -5233,8 +5214,8 @@ "releaseDate": "27/08/2019", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/the-bard's-tale-iv-director's-cut/C2B4T86TXLRS", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.34604.65351109767529701.defb4d0d-acab-4fd9-8208-7283068f991e.34d0241a-bbac-43d8-8e46-541283f89936?w=%i&h=%i", @@ -5251,8 +5232,8 @@ "releaseDate": "13/08/2019", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/the-bard's-tale-trilogy/9MVN4ND41DD3", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.58193.13855942306543540.f07392fd-5f64-460d-82f5-27790455d1e0.be4aa1b8-dc12-4784-9111-96d6c245d360?w=%i&h=%i", @@ -5269,8 +5250,8 @@ "releaseDate": "23/06/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/the-dungeon-of-naheulbeuk-the-amulet-of-chaos---ch/9MT8HTJC4GSB", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.45055.13817077164703749.cd543429-7cae-4721-ab65-6ad0bd406b04.59c45932-b890-4f8a-8e25-c99672f1df24?w=%i&h=%i", @@ -5286,7 +5267,7 @@ "releaseDate": "16/04/2018", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/the-elder-scrolls-iii-morrowind/BXVCFBJBNS17", @@ -5303,7 +5284,7 @@ "releaseDate": "27/10/2016", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/the-elder-scrolls-v-skyrim-special-edition/BQ1W1T1FC14W", @@ -5320,7 +5301,7 @@ "releaseDate": "13/10/2014", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/the-evil-within/C2M8HBNVPT1T", @@ -5337,7 +5318,7 @@ "releaseDate": "12/10/2017", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/the-evil-within-2/C40860J5R2MP", @@ -5355,31 +5336,13 @@ "releaseDate": "28/07/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/the-forgotten-city/9NJ4R763M7TH", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.53062.13683273960215638.5923ef51-2df1-4d4f-9d97-d8e9f37aa547.b48a871c-2640-4e5b-affe-490618dd2db1?w=%i&h=%i", "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.54681.13683273960215638.5923ef51-2df1-4d4f-9d97-d8e9f37aa547.cff96ae2-adec-4b67-8ec6-89f368af6abf?h=%i&format=jpg" }, - { - "gameTitle": "The Good Life", - "gamePublisher": "PLAYISM", - "gameDeveloper": "White Owls Inc.", - "gameGenres": [ - "A\u00e7\u00e3o e aventura", - "RPG" - ], - "releaseDate": "15/10/2021", - "extraGameProperties": { - "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true - }, - "xcloudUrl": "https://www.xbox.com/%s/play/games/the-good-life/9MSP68027100", - "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.31059.13823973898092683.aa67f480-4425-4a8e-8e7e-65563ed501e9.210b5ecb-5e26-4433-9307-ed391a065ee1?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.27383.13823973898092683.aa67f480-4425-4a8e-8e7e-65563ed501e9.5ea5246e-7d98-4856-af43-475793ff26ca?h=%i&format=jpg" - }, { "gameTitle": "The Gunk", "gamePublisher": "Thunderful", @@ -5391,8 +5354,8 @@ "releaseDate": "16/12/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/the-gunk/9P008L2LS87F", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.1452.14466083566107896.f1b98327-0240-4097-b759-cc5bd89ee66e.5da87010-64a5-4dfb-9396-5e88d1630886?w=%i&h=%i", @@ -5409,8 +5372,8 @@ "releaseDate": "04/06/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/the-last-kids-on-earth-and-the-staff-of-doom/9NQTJK43NCQJ", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.20735.13762649903394503.ccafcc44-7c4b-4fc6-9462-a3fcec235b79.34e55ab3-802e-4a09-9227-b44fc192e5b4?w=%i&h=%i", @@ -5427,7 +5390,7 @@ "releaseDate": "31/07/2017", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/the-long-dark/C41ZDFQ82M1G", @@ -5445,7 +5408,7 @@ "releaseDate": "24/10/2019", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/the-outer-worlds/BVTKN6CQ8W5F", @@ -5463,31 +5426,13 @@ "releaseDate": "03/01/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/the-pedestrian/9NTX07HR22TG", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.18714.14405641539368739.40cb973b-02de-48e6-af90-2792c037b42e.c3d93b01-fabd-4445-8d65-9c741af2fe80?w=%i&h=%i", "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.3542.14405641539368739.40cb973b-02de-48e6-af90-2792c037b42e.d535cfae-b8c0-405c-b347-ba0f40b3a182?h=%i&format=jpg" }, - { - "gameTitle": "The Procession to Calvary", - "gamePublisher": "Digerati", - "gameDeveloper": "Joe Richardson / Nephilim Game Studios", - "gameGenres": [ - "A\u00e7\u00e3o e aventura", - "Outros" - ], - "releaseDate": "01/07/2021", - "extraGameProperties": { - "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true - }, - "xcloudUrl": "https://www.xbox.com/%s/play/games/the-procession-to-calvary/9NW7S04QK7XV", - "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.16343.14454267663388593.fbefbd9e-03a2-4ccf-8957-5506e118cb71.7c905f4d-2cdb-4bea-aab5-77e93cdf5e72?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.15319.14454267663388593.fbefbd9e-03a2-4ccf-8957-5506e118cb71.6ac10501-e500-43ac-9901-801f34830c9f?h=%i&format=jpg" - }, { "gameTitle": "The Riftbreaker", "gamePublisher": "EXOR Studios", @@ -5499,7 +5444,7 @@ "releaseDate": "13/10/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/the-riftbreaker/9P94PCKP864B", @@ -5517,7 +5462,7 @@ "releaseDate": "16/11/2017", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/the-sims-4/C08JXNK0VG5L", @@ -5534,8 +5479,8 @@ "releaseDate": "19/12/2016", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/the-walking-dead-a-new-frontier---the-complete-sea/BQR7QS0F8SJ3", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.25445.68746382496567220.612ba4aa-3f7b-4b25-b141-a20112197dde.672c59e8-ed5c-4277-b00b-62c66d6d6c51?w=%i&h=%i", @@ -5551,8 +5496,8 @@ "releaseDate": "22/02/2016", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/the-walking-dead-michonne---the-complete-season/C2XNJC9WK15X", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.21725.66252839971129113.8f5f5ae5-f77d-4f3c-8388-3b220332b617.4c26174a-a955-4310-b9fc-fb9e561f7a9c?w=%i&h=%i", @@ -5568,8 +5513,8 @@ "releaseDate": "20/10/2014", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/the-walking-dead-season-two/C2DQXX0CB42F", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.34948.65440315593285086.25acafbc-307e-448a-a7f5-999e7cc0c672.7c50a8dd-9a0b-4209-b5bf-a34ad0c24366?w=%i&h=%i", @@ -5585,8 +5530,8 @@ "releaseDate": "13/10/2014", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/the-walking-dead-the-complete-first-season/BW6B077FCH11", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.64194.71901737879009236.c4798d79-4139-4e57-bb07-d252b6ca567c.10c48ea9-4aa3-4672-b9f7-ac8087d4526f?w=%i&h=%i", @@ -5602,7 +5547,7 @@ "releaseDate": "09/05/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/this-war-of-mine-final-cut/9MT6TG9CXR2H", @@ -5620,8 +5565,8 @@ "releaseDate": "30/08/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/tinykin/9NLLP82XVSKH", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.41283.13705408154411770.7cc771bf-fa30-454c-bfd5-e554674c2e74.79981d13-6d87-4215-8e1d-be83b443ed89?w=%i&h=%i", @@ -5637,12 +5582,12 @@ "releaseDate": "08/03/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/tom-clancy's-rainbow-six-siege-deluxe-edition/9NSHNMCM0JR8", - "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.392.14552088507516913.25c754f6-310b-4c4d-8353-e35dcfce21e4.d6dc659b-ce66-48ce-8516-28e747302292?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.2208.14552088507516913.25c754f6-310b-4c4d-8353-e35dcfce21e4.52b0f284-aa65-47ac-a7b2-ae6791739f9d?h=%i&format=jpg" + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.3515.14367438179754989.c0279dfe-426b-4a31-84c2-3cf57fd07773.462a3a44-858b-480a-90ef-7a3cbc9b28c2?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.35709.14367438179754989.c0279dfe-426b-4a31-84c2-3cf57fd07773.3b0725c3-8d64-42b3-9245-58d5617ec956?h=%i&format=jpg" }, { "gameTitle": "Tom Clancy\u2019s Ghost Recon\u00ae Wildlands - Standard Edition", @@ -5654,7 +5599,7 @@ "releaseDate": "06/03/2017", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/tom-clancy%E2%80%99s-ghost-recon-wildlands---standard-edit/C2N9CS4FS1QR", @@ -5672,7 +5617,7 @@ "releaseDate": "19/01/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/tom-clancy%E2%80%99s-rainbow-six-extraction/BXRB4ZH2GJHK", @@ -5690,7 +5635,7 @@ "releaseDate": "27/02/2017", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/torment-tides-of-numenera/BQND4NQXFFV2", @@ -5708,8 +5653,8 @@ "releaseDate": "20/12/2019", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/totally-accurate-battle-simulator/9PC4RWP34M2D", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.25383.14176345306313891.79ca8837-5397-4838-85b6-4a8a9720856c.db23320a-e9f6-4ed3-87e5-db4a5e82a6fc?w=%i&h=%i", @@ -5726,7 +5671,7 @@ "releaseDate": "31/03/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/totally-reliable-delivery-service/9NZG72SH3H4W", @@ -5744,8 +5689,8 @@ "releaseDate": "30/11/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/townscaper/9NFM39PSFXJD", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.47144.13596818197886835.587a1f17-af5b-48c5-acec-b287c3694c3b.f9e5ab95-f8bc-437e-917a-c38200963ac4?w=%i&h=%i", @@ -5762,7 +5707,7 @@ "releaseDate": "18/09/2019", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/trailmakers/9NSFGM8J6MBJ", @@ -5779,7 +5724,7 @@ "releaseDate": "06/09/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/train-sim-world-3-standard-edition/9PN99PX1P1LX", @@ -5797,7 +5742,7 @@ "releaseDate": "05/05/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/trek-to-yomi/9MTCRVZQN3GV", @@ -5815,8 +5760,8 @@ "releaseDate": "26/09/2019", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/tropico-6/C4KBHNHRPLN6", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.55829.66702598861173481.ab28a26d-e732-407f-b1fc-11b3cc0e41c0.04387f94-cdc6-4402-a538-4c0f0cb4049f?w=%i&h=%i", @@ -5830,11 +5775,11 @@ "Corrida e voo", "Esportes" ], - "releaseDate": "04/08/2022", + "releaseDate": "31/12/2799", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/turbo-golf-racing-game-preview/9N6781PMXC02", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.8752.14023533452078841.747fa65d-a94d-4613-a65d-e170645a3c1f.4ec3d3fd-6b93-4f06-827b-de4cf2a1f042?w=%i&h=%i", @@ -5851,8 +5796,8 @@ "releaseDate": "18/04/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/turnip-boy-commits-tax-evasion/9N0T8V0R7MBC", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.28759.13918938342247004.3a4e9214-ba82-4550-b1da-17c3eefbdfa4.a7fff141-6ce1-4395-91f5-8d4f8924404d?w=%i&h=%i", @@ -5869,31 +5814,13 @@ "releaseDate": "09/08/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/two-point-campus/9PCW1SMN9RGG", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.46969.14161945646118465.4c1e1eb1-a1ec-49c5-b06d-8386c15bcbf3.6b016067-8e4a-4985-b34e-1704a4fed711?w=%i&h=%i", "gameImageUrl": "https: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%iB" }, - { - "gameTitle": "UNSIGHTED", - "gamePublisher": "Humble Games", - "gameDeveloper": "Studio Pixel Punk", - "gameGenres": [ - "A\u00e7\u00e3o e aventura", - "RPG" - ], - "releaseDate": "30/09/2021", - "extraGameProperties": { - "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": false - }, - "xcloudUrl": "https://www.xbox.com/%s/play/games/unsighted/9P31WJ3N46KB", - "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.24081.14551478980510727.3f872f24-72f5-4271-8bf0-7ad7e9929ecd.c0a1ab79-ede7-4668-9820-5784b7cf34dd?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.60875.14551478980510727.3f872f24-72f5-4271-8bf0-7ad7e9929ecd.b390d79c-69d9-42fe-a862-536b8ce3a8a2?h=%i&format=jpg" - }, { "gameTitle": "Umurangi Generation Special Edition", "gamePublisher": "PLAYISM", @@ -5904,8 +5831,8 @@ "releaseDate": "16/05/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/umurangi-generation-special-edition/9PKLF2W8J0TF", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.13391.14260645465200380.af962a53-8815-4214-9dc3-7e92e8adec2b.66e92f9c-1ebb-422c-ac21-b4eaac54bd52?w=%i&h=%i", @@ -5921,7 +5848,7 @@ "releaseDate": "15/03/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/undertale/9PJGGX9XJXPB", @@ -5939,8 +5866,8 @@ "releaseDate": "18/11/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/undungeon/9N55W5HG0DSG", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.21160.13969309302998441.31cbae08-c7d3-436f-b6a4-9ef04acee0f9.b0a90bd0-77b3-45b1-84fe-2dfb49131365?w=%i&h=%i", @@ -5957,8 +5884,8 @@ "releaseDate": "02/11/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/unpacking/9NH5HN11FG4M", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.1461.13636460453065260.a236863a-02a2-47fd-bfee-b7b301312a6e.adcf4c68-73b9-45a5-9304-0c3d43be83f8?w=%i&h=%i", @@ -5974,7 +5901,7 @@ "releaseDate": "08/06/2018", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/unravel-two/C4VKLMG1HLZW", @@ -5991,31 +5918,13 @@ "releaseDate": "27/04/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/unsouled/9N7KBCL0NC5H", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.34215.14067847727673942.bc35e2b5-e9f7-46d2-88a7-ec8582f969a9.872121c0-6e54-4b4d-bfca-e00302c1a246?w=%i&h=%i", "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.49381.14067847727673942.0fb11748-9210-454a-9fa8-46519e6e34f4.60602cb3-9f1e-488e-b1f7-cbdec4a850a2?h=%i&format=jpg" }, - { - "gameTitle": "Visage", - "gamePublisher": "SadSquare Studio", - "gameDeveloper": "SadSquare Studio", - "gameGenres": [ - "A\u00e7\u00e3o e aventura", - "Desafios" - ], - "releaseDate": "29/10/2020", - "extraGameProperties": { - "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true - }, - "xcloudUrl": "https://www.xbox.com/%s/play/games/visage/9P9V698V6MVR", - "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.38839.14131226080888824.022eb486-21db-4eed-bb40-6811df081911.5d0035ae-a707-460d-9e1e-011a6287374b?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.36176.14131226080888824.022eb486-21db-4eed-bb40-6811df081911.87c5ecd1-879b-4789-844b-610a3d6dfb21?h=%i&format=jpg" - }, { "gameTitle": "Viva Pi\u00f1ata: TIP", "gamePublisher": "Microsoft Game Studios", @@ -6026,8 +5935,8 @@ "releaseDate": "10/08/2009", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/viva-pi%C3%B1ata-tip/BS1NPTPJGD4G", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.65381.69467662407886849.eb318d40-1e77-4848-b633-b9ee445d2f63.2bb50256-bcc1-477e-8fd6-4780b64a6cc0?w=%i&h=%i", @@ -6043,7 +5952,7 @@ "releaseDate": "01/12/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/warhammer-40000-battlesector/9P4FCZR21QQK", @@ -6061,8 +5970,8 @@ "releaseDate": "12/10/2015", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/wasteland-2-director's-cut/C521HDXRTS7F", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.44620.13602252643452986.79361d33-7a18-4554-8a50-66b60d3712e6.7ed73918-7955-45fe-9456-d1fe66a57a9e?w=%i&h=%i", @@ -6078,8 +5987,8 @@ "releaseDate": "27/08/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/wasteland-3/BQ9T0JF0D3L4", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.31983.69010346493633739.074410cb-38ab-4f48-b6fe-0ffa69c89fa9.b1e9bf9f-f41e-4384-9a25-748d0b18fedd?w=%i&h=%i", @@ -6096,13 +6005,30 @@ "releaseDate": "25/02/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/wasteland-remastered/9NGH1FK0RJGL", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.33255.13650100416089145.e9c63102-735a-40a7-b414-10693b469ff1.9d33c3ba-38af-4676-93e6-282f0280d212?w=%i&h=%i", "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.60150.13650100416089145.e9c63102-735a-40a7-b414-10693b469ff1.bd9c07a7-be22-4688-89db-b2a8a38df68d?h=%i&format=jpg" }, + { + "gameTitle": "Watch Dogs\u00ae2", + "gamePublisher": "Ubisoft Entertainment", + "gameDeveloper": "Ubisoft Montreal", + "gameGenres": [ + "A\u00e7\u00e3o e aventura" + ], + "releaseDate": "14/11/2016", + "extraGameProperties": { + "isInGamePass": true, + "controllerSupport": false, + "touchControllerSupport": false + }, + "xcloudUrl": "https://www.xbox.com/%s/play/games/watch-dogs2/BSXLFN5QQZSC", + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.15364.69997608528322872.06dc9610-5c4e-484e-b028-58ad215e637a.ab2ff32b-6ec5-40b7-9492-471c12708bf0?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.38484.69997608528322872.06dc9610-5c4e-484e-b028-58ad215e637a.29a8afc9-c3c7-4b3d-8e9f-f1b2858db4f8?h=%i&format=jpg" + }, { "gameTitle": "We Happy Few", "gamePublisher": "Gearbox Publishing", @@ -6113,7 +6039,7 @@ "releaseDate": "09/08/2018", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/we-happy-few/BPR2TBS2KMQJ", @@ -6131,12 +6057,12 @@ "releaseDate": "31/03/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/weird-west/9P0B86JN5X28", - "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.15035.14464239229931947.75c64ed9-49e8-4a32-87eb-a4b9b662a927.fe8ca0b9-fe03-4e51-bcc4-20702ba507e0?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.27723.14464239229931947.7bc1192e-7807-4d38-a2b7-c613bc884f82.65d3175e-4183-4a4b-b92f-ab18ea29fcf1?h=%i&format=jpg" + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.6486.14464239229931947.92218744-a2d3-4d4d-b2e8-a96385319eb0.24828d5c-9647-4f3e-8dde-acd52b333355?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.51072.14464239229931947.92218744-a2d3-4d4d-b2e8-a96385319eb0.9c407874-ff5f-496a-b32a-2fa8abb8aa37?h=%i&format=jpg" }, { "gameTitle": "Windjammers 2", @@ -6149,8 +6075,8 @@ "releaseDate": "20/01/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/windjammers-2/9N232RBCFR2G", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.23620.13960214545711625.430c5652-1978-4e19-92b1-8e901cdd420c.3dffa413-653f-4895-9baf-693821a21ac5?w=%i&h=%i", @@ -6167,7 +6093,7 @@ "releaseDate": "19/05/2014", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/wolfenstein-the-new-order/BT9FFLG51VVG", @@ -6184,7 +6110,7 @@ "releaseDate": "04/05/2015", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/wolfenstein-the-old-blood/BPV4GXTDCNSH", @@ -6202,7 +6128,7 @@ "releaseDate": "25/07/2019", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/wolfenstein-youngblood/C421ZX7RCG0W", @@ -6220,7 +6146,7 @@ "releaseDate": "26/10/2017", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/wolfenstein-ii-the-new-colossus/C4LLMHFQ1BXQ", @@ -6237,7 +6163,7 @@ "releaseDate": "22/08/2016", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/worms-w.m.d/C4BZ7X545J1T", @@ -6255,8 +6181,8 @@ "releaseDate": "27/08/2019", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/wreckfest/BRJNRZ9N734V", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.64141.69762792333465121.4086c71f-fab9-4c14-b959-3e77164a74cf.27e4efda-6f6d-4d33-b636-4d6ef45396ea?w=%i&h=%i", @@ -6272,8 +6198,8 @@ "releaseDate": "25/02/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/yakuza-0/9NPP17LHJ3MK", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.60688.13785223586843168.612c6166-3afd-413c-9b13-549ae975f01e.dd033b47-50aa-4bb9-a080-a3012123e470?w=%i&h=%i", @@ -6289,8 +6215,8 @@ "releaseDate": "27/01/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/yakuza-3-remastered/9N3460XCS8BC", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.21577.13944201124915616.56f9bc1a-1a43-4af0-bfb0-126636850d84.bf6d5086-d069-49e4-b394-b74c9377162e?w=%i&h=%i", @@ -6306,8 +6232,8 @@ "releaseDate": "27/01/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/yakuza-4-remastered/9NXFD44B98P4", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.44004.14426508489866901.a44eacfe-7e1e-495c-8aa4-17ccfbaa45e8.d8dafb44-9f24-42cc-8198-709a508821a5?w=%i&h=%i", @@ -6323,8 +6249,8 @@ "releaseDate": "27/01/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/yakuza-5-remastered/9NK23S9XBMZ6", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.3163.13665499948454255.6c2e1d5c-1a06-4839-a773-4e814ef1ff4b.c720fdee-85c1-4b0e-a8d3-bfed564f5bbf?w=%i&h=%i", @@ -6340,8 +6266,8 @@ "releaseDate": "24/03/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/yakuza-6-the-song-of-life/9NK3ZFC5R579", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.35958.13668783294084992.4ad59615-2917-47b4-88c2-a829ef88fc9d.d54cbf99-5857-4a78-815d-d7f680d55edb?w=%i&h=%i", @@ -6357,7 +6283,7 @@ "releaseDate": "21/04/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/yakuza-kiwami/9NBJ51BD0LTH", @@ -6374,8 +6300,8 @@ "releaseDate": "28/07/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/yakuza-kiwami-2/9PBJL0NLFMK9", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.62149.14117812508694764.cd76a3cb-9c02-4790-93a0-eae298c80bb7.55a328e1-e09a-4431-888b-f4c6989f5683?w=%i&h=%i", @@ -6391,13 +6317,30 @@ "releaseDate": "09/11/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/yakuza-like-a-dragon/9NXCSWCQTNFG", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.30664.14427542363794747.182f58ca-3a24-4a65-93bd-cdd320a35776.d7799370-aefe-44e7-8f83-4f8a5c363354?w=%i&h=%i", "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.29145.14427542363794747.182f58ca-3a24-4a65-93bd-cdd320a35776.d3800c18-f897-458a-8b39-a337fb55f00d?h=%i&format=jpg" }, + { + "gameTitle": "You Suck at Parking", + "gamePublisher": "Happy Volcano", + "gameDeveloper": "Happy Volcano", + "gameGenres": [ + "Corrida e voo" + ], + "releaseDate": "14/09/2022", + "extraGameProperties": { + "isInGamePass": true, + "controllerSupport": false, + "touchControllerSupport": false + }, + "xcloudUrl": "https://www.xbox.com/%s/play/games/you-suck-at-parking/9NCF3MRQ8480", + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.25613.13565037407534311.ea0dd485-42ff-445f-ad44-0867748af14c.20d3b6e3-28d3-4875-b8a8-2c6def19eab4?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.603.13565037407534311.0d8dd6b7-ba76-442e-8a83-5547f7a8f00d.efcbe208-cbeb-4a99-9f3b-1b547a328e48?h=%i&format=jpg" + }, { "gameTitle": "Young Souls", "gamePublisher": "The Arcade Crew", @@ -6409,8 +6352,8 @@ "releaseDate": "10/03/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/young-souls/9PMM5T8C0CN6", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.56680.14291150913821725.3d8057b5-357a-4911-a453-96660fa5c913.b9598d6a-327c-4ea7-b1bc-e3886f94dfe8?w=%i&h=%i", @@ -6426,8 +6369,8 @@ "releaseDate": "21/03/2022", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/zero-escape-the-nonary-games/9P47H1RVDWWW", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.5566.14594067352473910.0b999f06-79de-4e28-92ef-eabddfb67749.354a1ba9-4163-4e87-8dbb-d2e6181a67ae?w=%i&h=%i", @@ -6444,7 +6387,7 @@ "releaseDate": "03/02/2020", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/zombie-army-4-dead-war/9PLSCHRN5715", @@ -6462,8 +6405,8 @@ "releaseDate": "11/08/2021", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/art-of-rally/9P6JQDDZ2MQB", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.12769.14623403501904333.a0e82bb4-85b9-4a3c-9fd8-d7d04e850bd6.6db97f4e-c835-477c-8a83-06ccd306bd73?w=%i&h=%i", @@ -6479,8 +6422,8 @@ "releaseDate": "31/01/2011", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, - "touchControllerSupport": true + "controllerSupport": false, + "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/skate.-2007/C3QWNCV55VLL", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.56436.66765638016841945.44eb6927-d62a-4346-a97d-4d1d0881b107.ac9661f7-1e16-4df1-bf81-119631e97f8b?w=%i&h=%i", @@ -6497,7 +6440,7 @@ "releaseDate": "01/10/2017", "extraGameProperties": { "isInGamePass": true, - "controllerSupport": true, + "controllerSupport": false, "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/thehunter-call-of-the-wild/BXBJQ1932138", From 3cc4c84bcf4d85399da1acda19033e1f739cdd0d Mon Sep 17 00:00:00 2001 From: LuanRoger Date: Wed, 19 Oct 2022 07:31:22 -0300 Subject: [PATCH 07/11] Share code between scripts - Refactor scripts structure --- tools/internals/element_picker.py | 72 ++++++++++++ tools/internals/json_writer.py | 12 ++ .../models/game_properties.py | 0 .../models/xcloud_game.py | 2 +- tools/internals/utils/url_formater.py | 30 +++++ .../webdriver_utils.py | 0 .../xcloud_elements_consts.py | 4 + tools/xcloud_extras/consts.py | 1 + tools/xcloud_extras_picker.py | 23 ++++ .../consts.py | 0 tools/xcloud_game_picker.py | 51 +++++++++ tools/xcloud_game_picker/element_picker.py | 37 ------ tools/xcloud_game_picker/json_writer.py | 13 --- .../xcloud_game_picker/xcloud_game_picker.py | 107 ------------------ .../xcloud_games.json | 48 +++++--- 15 files changed, 227 insertions(+), 173 deletions(-) create mode 100644 tools/internals/element_picker.py create mode 100644 tools/internals/json_writer.py rename tools/{xcloud_game_picker => internals}/models/game_properties.py (100%) rename tools/{xcloud_game_picker => internals}/models/xcloud_game.py (94%) create mode 100644 tools/internals/utils/url_formater.py rename tools/{xcloud_game_picker => internals}/webdriver_utils.py (100%) rename tools/{xcloud_game_picker => internals}/xcloud_elements_consts.py (86%) create mode 100644 tools/xcloud_extras/consts.py create mode 100644 tools/xcloud_extras_picker.py rename tools/{xcloud_game_picker => xcloud_game}/consts.py (100%) create mode 100644 tools/xcloud_game_picker.py delete mode 100644 tools/xcloud_game_picker/element_picker.py delete mode 100644 tools/xcloud_game_picker/json_writer.py delete mode 100644 tools/xcloud_game_picker/xcloud_game_picker.py rename tools/{xcloud_game_picker => }/xcloud_games.json (99%) diff --git a/tools/internals/element_picker.py b/tools/internals/element_picker.py new file mode 100644 index 0000000..9ad65ed --- /dev/null +++ b/tools/internals/element_picker.py @@ -0,0 +1,72 @@ +from typing import Any, Tuple, List +from selenium.webdriver.common.by import By +from selenium.webdriver.support.ui import WebDriverWait +from selenium.webdriver.support import expected_conditions as EC + +from .models.xcloud_game import * +from .models.game_properties import * +from .xcloud_elements_consts import SUPPORTED_INPUTS_CONTAINER, GAME_INFO_BOX_XPATH, GAME_SUBTITLE_ELEMENT, GAME_TITLE_H1_ELEMENT, GAME_PROPERTIES_CONTAINER, STORE_BUTTON_ELEMENT +from .webdriver_utils import * +from .utils.url_formater import * + +def getGamesInGrid(grid) -> Any: + return grid.find_elements(by=By.TAG_NAME, value="a") + +def getGamesInfoInNewTab(driver, game_url: str) -> XcloudGame: + open_new_tab(driver) + goto_tab(driver, 1) + driver.get(game_url) + + if("games" not in driver.current_url): + close_current_tab(driver) + goto_tab(driver, 0) + return None + + finder: WebDriverWait = WebDriverWait(driver, 30).until( + EC.presence_of_element_located((By.CLASS_NAME, GAME_TITLE_H1_ELEMENT)) + ) + + game_title = driver.find_element(by=By.CLASS_NAME, value=GAME_TITLE_H1_ELEMENT).text + game_properties: GameProperties = getGamesProperties(driver.find_element(by=By.CLASS_NAME, value=GAME_PROPERTIES_CONTAINER)) + store_url: str = driver.find_element(by=By.CLASS_NAME, value=STORE_BUTTON_ELEMENT).find_element(by=By.TAG_NAME, value="a").get_attribute("href") + game_genre = getGameGenres(driver) + + hero_image = driver.find_elements(by=By.TAG_NAME, value="source") + game_image_url = format_hero_image(hero_image[0].get_attribute("srcset")) + + game_info_box = getInfoFromGameBox(driver) + + close_current_tab(driver) + goto_tab(driver, 0) + + return XcloudGame(game_title, game_info_box[0], game_info_box[1], game_genre, game_info_box[2], + game_properties, None, None, game_image_url, store_url) + +def getGamesProperties(gameInfoContainer) -> GameProperties: + is_in_gamepass: bool = False + try: + gameInfoContainer.find_element(by=By.TAG_NAME, value="svg") + is_in_gamepass = True + except: + pass + + supported_controller_container = gameInfoContainer.find_element(by=By.CLASS_NAME, value=SUPPORTED_INPUTS_CONTAINER) + supported_controller_divs = supported_controller_container.find_elements(by=By.TAG_NAME, value="div") + + d = len(supported_controller_divs) + support_controller: bool = len(supported_controller_divs) >= 2 + touch_controller: bool = len(supported_controller_divs) >= 4 + + return GameProperties(is_in_gamepass, support_controller, touch_controller) + +def getGameGenres(driver) -> List[str]: + separator = '•' + + subtitle = driver.find_element(by=By.CLASS_NAME, value=GAME_SUBTITLE_ELEMENT).text + formated_subtitle = subtitle.split(separator) + return [genre.strip() for genre in formated_subtitle[1:]] + +def getInfoFromGameBox(driver) -> Tuple[str]: + game_infos = driver.find_elements(by=By.XPATH, value=GAME_INFO_BOX_XPATH) + + return (game_infos[0].text, game_infos[1].text, game_infos[2].text) \ No newline at end of file diff --git a/tools/internals/json_writer.py b/tools/internals/json_writer.py new file mode 100644 index 0000000..c1e5a67 --- /dev/null +++ b/tools/internals/json_writer.py @@ -0,0 +1,12 @@ +from genericpath import exists +import json +from typing import List + +def flush_game_list(list: List, filePath: str): + json_str = json.dumps([dict(ob) for ob in list], indent=4) + + outfile = open(filePath, 'a') if exists(filePath) else open(filePath, 'w+') + outfile.write(json_str) + outfile.close() + + list.clear() \ No newline at end of file diff --git a/tools/xcloud_game_picker/models/game_properties.py b/tools/internals/models/game_properties.py similarity index 100% rename from tools/xcloud_game_picker/models/game_properties.py rename to tools/internals/models/game_properties.py diff --git a/tools/xcloud_game_picker/models/xcloud_game.py b/tools/internals/models/xcloud_game.py similarity index 94% rename from tools/xcloud_game_picker/models/xcloud_game.py rename to tools/internals/models/xcloud_game.py index 6ca4d67..94ccc96 100644 --- a/tools/xcloud_game_picker/models/xcloud_game.py +++ b/tools/internals/models/xcloud_game.py @@ -1,7 +1,7 @@ import json from typing import List -from models.game_properties import GameProperties +from .game_properties import GameProperties class XcloudGame: gameTitle: str diff --git a/tools/internals/utils/url_formater.py b/tools/internals/utils/url_formater.py new file mode 100644 index 0000000..22f4c35 --- /dev/null +++ b/tools/internals/utils/url_formater.py @@ -0,0 +1,30 @@ +def add_parameter_sprinter(url: str) -> str: + if(url is None): return None + + argument_start = url.find('?') + arguments = url[argument_start:] + + width_start = arguments.find("w=") + 2 + height_start = arguments.find("h=") + 2 + widht = arguments[width_start : width_start + 3] + height = arguments[height_start : height_start + 3] + + arguments = arguments.replace(widht, "%i", 1) + arguments = arguments.replace(height, "%i", 1) + + return url[:argument_start] + arguments +def format_hero_image(url: str) -> str: + if(url is None): return None + + url = url.split(',')[1].strip() + url = url.split(' ')[0].strip() + + argument_start = url.find('?') + arguments = url[argument_start:] + + height_start = arguments.find("h=") + 2 + height = arguments[height_start : height_start + 4] + + arguments = arguments.replace(height, "%i", 1) + + return "https:" + url[:argument_start] + arguments \ No newline at end of file diff --git a/tools/xcloud_game_picker/webdriver_utils.py b/tools/internals/webdriver_utils.py similarity index 100% rename from tools/xcloud_game_picker/webdriver_utils.py rename to tools/internals/webdriver_utils.py diff --git a/tools/xcloud_game_picker/xcloud_elements_consts.py b/tools/internals/xcloud_elements_consts.py similarity index 86% rename from tools/xcloud_game_picker/xcloud_elements_consts.py rename to tools/internals/xcloud_elements_consts.py index 5c90934..08d40b0 100644 --- a/tools/xcloud_game_picker/xcloud_elements_consts.py +++ b/tools/internals/xcloud_elements_consts.py @@ -1,3 +1,7 @@ +# Xcloud extra picker +GAMES_GRID_ELEMENT: str = "GameItemGrid-module__fixedSizeGrid___RZZqw" + +# Xcloud game picker GAMES_GRID_ELEMENT: str = "GameItemGrid-module__postitionRelative___1SLzN" GAME_TITLE_H1_ELEMENT: str = "Header-module__titleText___2UTto" GAME_SUBTITLE_ELEMENT: str = "Header-module__subtitleText___s-dWF" diff --git a/tools/xcloud_extras/consts.py b/tools/xcloud_extras/consts.py new file mode 100644 index 0000000..ac8fde0 --- /dev/null +++ b/tools/xcloud_extras/consts.py @@ -0,0 +1 @@ +XCLOUD_RECENTLY_ADDED_URL: str = "https://www.xbox.com/pt-BR/play/gallery/recently-added" \ No newline at end of file diff --git a/tools/xcloud_extras_picker.py b/tools/xcloud_extras_picker.py new file mode 100644 index 0000000..ccef70a --- /dev/null +++ b/tools/xcloud_extras_picker.py @@ -0,0 +1,23 @@ +from time import sleep +from typing import List +from selenium import webdriver +from selenium.webdriver.common.by import By +from selenium.webdriver.support.ui import WebDriverWait +from selenium.webdriver.support import expected_conditions as EC + +from xcloud_extras.consts import XCLOUD_RECENTLY_ADDED_URL +from internals.element_picker import getGamesInGrid +from internals.webdriver_utils import * +from internals.xcloud_elements_consts import * +from internals.json_writer import * +from utils.url_formater import * + +driver = webdriver.Edge() +driver.get(XCLOUD_RECENTLY_ADDED_URL) +games_grid = driver.find_element(by=By.CLASS_NAME, value=GAMES_GRID_ELEMENT) +games = getGamesInGrid(games_grid) + +for game in games: + game_url:str = game.get_attribute("href") + game_image_element = game.find_element(by=By.TAG_NAME, value="img") + tile_image_url = add_parameter_sprinter(game_image_element.get_attribute("src")) \ No newline at end of file diff --git a/tools/xcloud_game_picker/consts.py b/tools/xcloud_game/consts.py similarity index 100% rename from tools/xcloud_game_picker/consts.py rename to tools/xcloud_game/consts.py diff --git a/tools/xcloud_game_picker.py b/tools/xcloud_game_picker.py new file mode 100644 index 0000000..b6b20b9 --- /dev/null +++ b/tools/xcloud_game_picker.py @@ -0,0 +1,51 @@ +from time import sleep +from typing import List +from selenium import webdriver +from selenium.webdriver.common.by import By +from xcloud_game.consts import GAMES_JSON_FILE_PATH + +from internals.utils.url_formater import * +from xcloud_game.consts import * +from internals.element_picker import getGamesInfoInNewTab, getGamesInGrid +from internals.webdriver_utils import * +from internals.xcloud_elements_consts import * +from internals.models.xcloud_game import XcloudGame +from internals.json_writer import * + +driver = webdriver.Edge() +driver.get(XCLOUD_URL) +games_grid = driver.find_element(by=By.CLASS_NAME, value=GAMES_GRID_ELEMENT) +done: bool = False + +def add_formater_game_url_server(url: str) -> str: + base_url = XCLOUD_BASE_URL + return base_url + "%s/" + url[len(base_url):] + +page_scroll_point = 0 +page_height = driver.execute_script("return document.body.scrollHeight") +games_list: List[XcloudGame] = [] +while not done: + for game in getGamesInGrid(games_grid): + game_url: str = game.get_attribute("href") + if(add_formater_game_url_server(game_url) in [geted_game.xcloudUrl for geted_game in games_list]): + continue + + game_image_element = game.find_element(by=By.TAG_NAME, value="img") + tile_image_url = add_parameter_sprinter(game_image_element.get_attribute("src")) + + xcloud_game = getGamesInfoInNewTab(driver, game_url) + if(xcloud_game == None): + continue + xcloud_game.xcloudUrl = add_formater_game_url_server(game_url) + xcloud_game.tileGameImageUrl = tile_image_url + + if(xcloud_game not in games_list): + games_list.append(xcloud_game) + + page_scroll_point += 1700 + driver.execute_script(f"window.scrollTo(0, {page_scroll_point})") + done = page_scroll_point >= page_height + sleep(0.5) + +driver.close() +flush_game_list(games_list, GAMES_JSON_FILE_PATH) \ No newline at end of file diff --git a/tools/xcloud_game_picker/element_picker.py b/tools/xcloud_game_picker/element_picker.py deleted file mode 100644 index 38198b2..0000000 --- a/tools/xcloud_game_picker/element_picker.py +++ /dev/null @@ -1,37 +0,0 @@ -from typing import Any, Tuple, List -from selenium.webdriver.common.by import By - -from models.game_properties import GameProperties -from xcloud_elements_consts import SUPPORTED_INPUTS_CONTAINER, GAME_INFO_BOX_XPATH, GAME_SUBTITLE_ELEMENT - -def getGamesInGrid(grid) -> Any: - return grid.find_elements(by=By.TAG_NAME, value="a") - -def getGamesProperties(gameInfoContainer) -> GameProperties: - is_in_gamepass: bool = False - try: - gameInfoContainer.find_element(by=By.TAG_NAME, value="svg") - is_in_gamepass = True - except: - pass - - supported_controller_container = gameInfoContainer.find_element(by=By.CLASS_NAME, value=SUPPORTED_INPUTS_CONTAINER) - supported_controller_divs = supported_controller_container.find_elements(by=By.TAG_NAME, value="div") - - d = len(supported_controller_divs) - support_controller: bool = len(supported_controller_divs) >= 2 - touch_controller: bool = len(supported_controller_divs) >= 4 - - return GameProperties(is_in_gamepass, support_controller, touch_controller) - -def getGameGenres(driver) -> List[str]: - separator = '•' - - subtitle = driver.find_element(by=By.CLASS_NAME, value=GAME_SUBTITLE_ELEMENT).text - formated_subtitle = subtitle.split(separator) - return [genre.strip() for genre in formated_subtitle[1:]] - -def getInfoFromGameBox(driver) -> Tuple[str]: - game_infos = driver.find_elements(by=By.XPATH, value=GAME_INFO_BOX_XPATH) - - return (game_infos[0].text, game_infos[1].text, game_infos[2].text) \ No newline at end of file diff --git a/tools/xcloud_game_picker/json_writer.py b/tools/xcloud_game_picker/json_writer.py deleted file mode 100644 index e9e95a2..0000000 --- a/tools/xcloud_game_picker/json_writer.py +++ /dev/null @@ -1,13 +0,0 @@ -from genericpath import exists -import json -from typing import List -from consts import GAMES_JSON_FILE_PATH - -def flush_game_list(list: List): - json_str = json.dumps([dict(ob) for ob in list], indent=4) - - outfile = open(GAMES_JSON_FILE_PATH, 'a') if exists(GAMES_JSON_FILE_PATH) else open(GAMES_JSON_FILE_PATH, 'w+') - outfile.write(json_str) - outfile.close() - - list.clear() \ No newline at end of file diff --git a/tools/xcloud_game_picker/xcloud_game_picker.py b/tools/xcloud_game_picker/xcloud_game_picker.py deleted file mode 100644 index 4665afc..0000000 --- a/tools/xcloud_game_picker/xcloud_game_picker.py +++ /dev/null @@ -1,107 +0,0 @@ -from time import sleep -from typing import List -from selenium import webdriver -from selenium.webdriver.common.by import By -from selenium.webdriver.support.ui import WebDriverWait -from selenium.webdriver.support import expected_conditions as EC - -from consts import * -from element_picker import getGamesInGrid -from element_picker import getGamesProperties -from models.game_properties import GameProperties -from element_picker import * -from webdriver_utils import * -from xcloud_elements_consts import * -from models.xcloud_game import XcloudGame -from json_writer import * - -driver = webdriver.Edge() -driver.get(XCLOUD_URL) -games_grid = driver.find_element(by=By.CLASS_NAME, value=GAMES_GRID_ELEMENT) -done: bool = False - -def add_formater_game_url_server(url: str) -> str: - base_url = XCLOUD_BASE_URL - return base_url + "%s/" + url[len(base_url):] - -def add_parameter_sprinter(url: str) -> str: - if(url is None): return None - - argument_start = url.find('?') - arguments = url[argument_start:] - - width_start = arguments.find("w=") + 2 - height_start = arguments.find("h=") + 2 - widht = arguments[width_start : width_start + 3] - height = arguments[height_start : height_start + 3] - - arguments = arguments.replace(widht, "%i", 1) - arguments = arguments.replace(height, "%i", 1) - - return url[:argument_start] + arguments -def format_hero_image(url: str) -> str: - if(url is None): return None - - url = url.split(',')[1].strip() - url = url.split(' ')[0].strip() - - argument_start = url.find('?') - arguments = url[argument_start:] - - height_start = arguments.find("h=") + 2 - height = arguments[height_start : height_start + 4] - - arguments = arguments.replace(height, "%i", 1) - - return "https:" + url[:argument_start] + arguments - -page_scroll_point = 0 -page_height = driver.execute_script("return document.body.scrollHeight") -games_list: List[XcloudGame] = [] -while not done: - for game in getGamesInGrid(games_grid): - game_url: str = game.get_attribute("href") - if(add_formater_game_url_server(game_url) in [geted_game.xcloudUrl for geted_game in games_list]): - continue - - game_image_element = game.find_element(by=By.TAG_NAME, value="img") - tile_image_url = add_parameter_sprinter(game_image_element.get_attribute("src")) - - open_new_tab(driver) - goto_tab(driver, 1) - driver.get(game_url) - - if("games" not in driver.current_url): - close_current_tab(driver) - goto_tab(driver, 0) - continue - finder: WebDriverWait = WebDriverWait(driver, 30).until( - EC.presence_of_element_located((By.CLASS_NAME, GAME_TITLE_H1_ELEMENT)) - ) - - game_title = driver.find_element(by=By.CLASS_NAME, value=GAME_TITLE_H1_ELEMENT).text - game_properties: GameProperties = getGamesProperties(driver.find_element(by=By.CLASS_NAME, value=GAME_PROPERTIES_CONTAINER)) - store_url: str = driver.find_element(by=By.CLASS_NAME, value=STORE_BUTTON_ELEMENT).find_element(by=By.TAG_NAME, value="a").get_attribute("href") - game_genre = getGameGenres(driver) - - hero_image = driver.find_elements(by=By.TAG_NAME, value="source") - game_image_url = format_hero_image(hero_image[0].get_attribute("srcset")) - - game_info_box = getInfoFromGameBox(driver) - - close_current_tab(driver) - goto_tab(driver, 0) - - new_game = XcloudGame(game_title, game_info_box[0], game_info_box[1], game_genre, game_info_box[2], - game_properties, add_formater_game_url_server(game_url), tile_image_url, game_image_url, store_url) - - if(new_game not in games_list): - games_list.append(new_game) - - page_scroll_point += 1700 - driver.execute_script(f"window.scrollTo(0, {page_scroll_point})") - done = page_scroll_point >= page_height - sleep(0.5) - -driver.close() -flush_game_list(games_list) \ No newline at end of file diff --git a/tools/xcloud_game_picker/xcloud_games.json b/tools/xcloud_games.json similarity index 99% rename from tools/xcloud_game_picker/xcloud_games.json rename to tools/xcloud_games.json index af81eac..3c21fe3 100644 --- a/tools/xcloud_game_picker/xcloud_games.json +++ b/tools/xcloud_games.json @@ -33,6 +33,24 @@ "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.55802.13714290489749263.fa316741-1615-4cad-942c-7c2fddc7b069.86d4a18f-cf41-4fa9-92af-8c95ca311c96?w=%i&h=%i", "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.12478.13714290489749263.fa316741-1615-4cad-942c-7c2fddc7b069.f1bbf8b2-4ab6-4295-8bea-d41b506e812a?h=%i&format=jpg" }, + { + "gameTitle": "A Plague Tale: Requiem", + "gamePublisher": "Focus Entertainment", + "gameDeveloper": "Asobo Studio", + "gameGenres": [ + "A\u00e7\u00e3o e aventura", + "RPG" + ], + "releaseDate": "18/10/2022", + "extraGameProperties": { + "isInGamePass": true, + "controllerSupport": false, + "touchControllerSupport": false + }, + "xcloudUrl": "https://www.xbox.com/%s/play/games/a-plague-tale-requiem/9ND0JVB184XL", + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.60562.13558336166432541.beb57fbe-cc4b-40c5-ba76-c8112867dea2.9a69e497-4f9f-495d-9ac6-f8956b491d91?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.59830.13558336166432541.beb57fbe-cc4b-40c5-ba76-c8112867dea2.f764a45c-f860-483f-b264-aa9041f2bb62?h=%i&format=jpg" + }, { "gameTitle": "ANVIL : Vault Breaker (Game Preview)", "gamePublisher": "SK TELECOM CO., LTD.", @@ -787,14 +805,11 @@ "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.32115.13934302625463282.ce885e17-8e35-4fa6-951c-1f7e58c35e4f.aedd415c-053d-49a0-a707-3aba18aa2a4f?h=%i&format=jpg" }, { - "gameTitle": "Costume Quest", - "gamePublisher": "THQ, Inc.", - "gameDeveloper": "Double Fine Productions, Inc.", - "gameGenres": [ - "A\u00e7\u00e3o e aventura", - "RPG" - ], - "releaseDate": "19/10/2010", + "gameTitle": "", + "gamePublisher": "", + "gameDeveloper": "", + "gameGenres": [], + "releaseDate": "", "extraGameProperties": { "isInGamePass": true, "controllerSupport": false, @@ -1985,8 +2000,8 @@ "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/fortnite/BT5P2X999VH2", - "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.29537.70702278257994163.b4f7e5cb-12c9-4573-a0a3-d67a76ff36fd.264a0e27-9ca4-4422-b683-aff14b835f31?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.16457.70702278257994163.b4f7e5cb-12c9-4573-a0a3-d67a76ff36fd.aea76de6-52f8-42af-ba8c-06e3603e0e87?h=%i&format=jpg" + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.59377.70702278257994163.852f160a-a678-4fa5-a9e3-fdeffeb7e7dd.44c6f6d7-4bb2-42ba-be35-984b29425077?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.39022.70702278257994163.852f160a-a678-4fa5-a9e3-fdeffeb7e7dd.71fff695-ed20-459a-a44d-2ce06684e9df?h=%i&format=jpg" }, { "gameTitle": "Forza Horizon 4 Edi\u00e7\u00e3o Padr\u00e3o", @@ -3193,11 +3208,14 @@ "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.31810.13792918252035849.70cae5d6-a601-49fa-aa3f-fe57d9dc8f66.05f7102e-6f01-4bb2-bacb-7208fd00fbd0?h=%i&format=jpg" }, { - "gameTitle": "", - "gamePublisher": "", - "gameDeveloper": "", - "gameGenres": [], - "releaseDate": "", + "gameTitle": "Minecraft Dungeons", + "gamePublisher": "Xbox Game Studios", + "gameDeveloper": "Mojang Studios / \u202aDouble Eleven Limited", + "gameGenres": [ + "A\u00e7\u00e3o e aventura", + "RPG" + ], + "releaseDate": "26/05/2020", "extraGameProperties": { "isInGamePass": true, "controllerSupport": false, From dfea2298cdc1a17f001556de6911891272dfae25 Mon Sep 17 00:00:00 2001 From: LuanRoger Date: Wed, 19 Oct 2022 07:47:43 -0300 Subject: [PATCH 08/11] Create xcloud_extras_picker To get the rencently added games on Game Pass --- tools/internals/shared_consts.py | 1 + tools/internals/utils/url_formater.py | 4 + tools/xcloud_extras/consts.py | 3 +- tools/xcloud_extras_picker.py | 25 ++- tools/xcloud_game/consts.py | 1 - tools/xcloud_game_picker.py | 7 +- tools/xcloud_recents.json | 271 ++++++++++++++++++++++++++ 7 files changed, 297 insertions(+), 15 deletions(-) create mode 100644 tools/internals/shared_consts.py create mode 100644 tools/xcloud_recents.json diff --git a/tools/internals/shared_consts.py b/tools/internals/shared_consts.py new file mode 100644 index 0000000..2e30384 --- /dev/null +++ b/tools/internals/shared_consts.py @@ -0,0 +1 @@ +XCLOUD_BASE_URL: str = "https://www.xbox.com/" \ No newline at end of file diff --git a/tools/internals/utils/url_formater.py b/tools/internals/utils/url_formater.py index 22f4c35..69f528a 100644 --- a/tools/internals/utils/url_formater.py +++ b/tools/internals/utils/url_formater.py @@ -1,3 +1,6 @@ +def add_formater_game_url_server(url: str, base_url: str) -> str: + return base_url + "%s/" + url[len(base_url):] + def add_parameter_sprinter(url: str) -> str: if(url is None): return None @@ -13,6 +16,7 @@ def add_parameter_sprinter(url: str) -> str: arguments = arguments.replace(height, "%i", 1) return url[:argument_start] + arguments + def format_hero_image(url: str) -> str: if(url is None): return None diff --git a/tools/xcloud_extras/consts.py b/tools/xcloud_extras/consts.py index ac8fde0..6b1da00 100644 --- a/tools/xcloud_extras/consts.py +++ b/tools/xcloud_extras/consts.py @@ -1 +1,2 @@ -XCLOUD_RECENTLY_ADDED_URL: str = "https://www.xbox.com/pt-BR/play/gallery/recently-added" \ No newline at end of file +XCLOUD_RECENTLY_ADDED_URL: str = "https://www.xbox.com/pt-BR/play/gallery/recently-added" +RECENTLY_ADDED_JSON_FILE: str = "./xcloud_recents.json" \ No newline at end of file diff --git a/tools/xcloud_extras_picker.py b/tools/xcloud_extras_picker.py index ccef70a..7a9864e 100644 --- a/tools/xcloud_extras_picker.py +++ b/tools/xcloud_extras_picker.py @@ -1,23 +1,32 @@ -from time import sleep from typing import List from selenium import webdriver from selenium.webdriver.common.by import By -from selenium.webdriver.support.ui import WebDriverWait -from selenium.webdriver.support import expected_conditions as EC +from internals.models.xcloud_game import XcloudGame -from xcloud_extras.consts import XCLOUD_RECENTLY_ADDED_URL -from internals.element_picker import getGamesInGrid +from xcloud_extras.consts import * +from internals.shared_consts import XCLOUD_BASE_URL +from internals.element_picker import getGamesInGrid, getGamesInfoInNewTab from internals.webdriver_utils import * from internals.xcloud_elements_consts import * from internals.json_writer import * -from utils.url_formater import * +from internals.utils.url_formater import * driver = webdriver.Edge() driver.get(XCLOUD_RECENTLY_ADDED_URL) games_grid = driver.find_element(by=By.CLASS_NAME, value=GAMES_GRID_ELEMENT) games = getGamesInGrid(games_grid) +games_list: List[XcloudGame] = [] for game in games: - game_url:str = game.get_attribute("href") + game_url: str = game.get_attribute("href") game_image_element = game.find_element(by=By.TAG_NAME, value="img") - tile_image_url = add_parameter_sprinter(game_image_element.get_attribute("src")) \ No newline at end of file + tile_image_url = add_parameter_sprinter(game_image_element.get_attribute("src")) + + xcloud_game = getGamesInfoInNewTab(driver, game_url) + xcloud_game.xcloudUrl = add_formater_game_url_server(game_url, XCLOUD_BASE_URL) + xcloud_game.tileGameImageUrl = tile_image_url + + games_list.append(xcloud_game) + +driver.close() +flush_game_list(games_list, RECENTLY_ADDED_JSON_FILE) \ No newline at end of file diff --git a/tools/xcloud_game/consts.py b/tools/xcloud_game/consts.py index 8ab7248..73c5729 100644 --- a/tools/xcloud_game/consts.py +++ b/tools/xcloud_game/consts.py @@ -1,3 +1,2 @@ -XCLOUD_BASE_URL: str = "https://www.xbox.com/" XCLOUD_URL: str = "https://www.xbox.com/en-US/play/gallery/all-games" GAMES_JSON_FILE_PATH: str = "./xcloud_games.json" \ No newline at end of file diff --git a/tools/xcloud_game_picker.py b/tools/xcloud_game_picker.py index b6b20b9..b740a56 100644 --- a/tools/xcloud_game_picker.py +++ b/tools/xcloud_game_picker.py @@ -6,6 +6,7 @@ from internals.utils.url_formater import * from xcloud_game.consts import * +from internals.shared_consts import XCLOUD_BASE_URL from internals.element_picker import getGamesInfoInNewTab, getGamesInGrid from internals.webdriver_utils import * from internals.xcloud_elements_consts import * @@ -17,10 +18,6 @@ games_grid = driver.find_element(by=By.CLASS_NAME, value=GAMES_GRID_ELEMENT) done: bool = False -def add_formater_game_url_server(url: str) -> str: - base_url = XCLOUD_BASE_URL - return base_url + "%s/" + url[len(base_url):] - page_scroll_point = 0 page_height = driver.execute_script("return document.body.scrollHeight") games_list: List[XcloudGame] = [] @@ -36,7 +33,7 @@ def add_formater_game_url_server(url: str) -> str: xcloud_game = getGamesInfoInNewTab(driver, game_url) if(xcloud_game == None): continue - xcloud_game.xcloudUrl = add_formater_game_url_server(game_url) + xcloud_game.xcloudUrl = add_formater_game_url_server(game_url, XCLOUD_BASE_URL) xcloud_game.tileGameImageUrl = tile_image_url if(xcloud_game not in games_list): diff --git a/tools/xcloud_recents.json b/tools/xcloud_recents.json new file mode 100644 index 0000000..7fc038a --- /dev/null +++ b/tools/xcloud_recents.json @@ -0,0 +1,271 @@ +[ + { + "gameTitle": "A Plague Tale: Requiem", + "gamePublisher": "Focus Entertainment", + "gameDeveloper": "Asobo Studio", + "gameGenres": [ + "A\u00e7\u00e3o e aventura", + "RPG" + ], + "releaseDate": "18/10/2022", + "extraGameProperties": { + "isInGamePass": true, + "controllerSupport": false, + "touchControllerSupport": false + }, + "xcloudUrl": "https://www.xbox.com/%s/play/games/a-plague-tale-requiem/9ND0JVB184XL", + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.60562.13558336166432541.beb57fbe-cc4b-40c5-ba76-c8112867dea2.9a69e497-4f9f-495d-9ac6-f8956b491d91?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.59830.13558336166432541.beb57fbe-cc4b-40c5-ba76-c8112867dea2.f764a45c-f860-483f-b264-aa9041f2bb62?h=%i&format=jpg" + }, + { + "gameTitle": "Beacon Pines", + "gamePublisher": "Fellow Traveller", + "gameDeveloper": "Hiding Spot", + "gameGenres": [ + "A\u00e7\u00e3o e aventura", + "Fam\u00edlia e crian\u00e7as" + ], + "releaseDate": "22/09/2022", + "extraGameProperties": { + "isInGamePass": true, + "controllerSupport": false, + "touchControllerSupport": false + }, + "xcloudUrl": "https://www.xbox.com/%s/play/games/beacon-pines/9P4R2M0NRWNK", + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.23560.14588206397851258.078192f2-519f-4a81-b68d-2dbd6199f2c2.af953250-54af-4a2a-be0c-163b68917421?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.39650.14588206397851258.078192f2-519f-4a81-b68d-2dbd6199f2c2.0f659ae9-51f1-4a1d-a086-0a5f165d5b5f?h=%i&format=jpg" + }, + { + "gameTitle": "Chivalry 2", + "gamePublisher": "Tripwire Interactive LLC", + "gameDeveloper": "Torn Banner Studios", + "gameGenres": [ + "A\u00e7\u00e3o e aventura", + "Luta" + ], + "releaseDate": "08/06/2021", + "extraGameProperties": { + "isInGamePass": true, + "controllerSupport": false, + "touchControllerSupport": false + }, + "xcloudUrl": "https://www.xbox.com/%s/play/games/chivalry-2/9N7CJX93ZGWN", + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.61947.14071745200459129.81e3e86f-3ab4-4027-b9a1-81f595fcb505.fc2487e4-7785-4a73-b2ad-b94aa01a7e7f?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.56595.14071745200459129.81e3e86f-3ab4-4027-b9a1-81f595fcb505.bcc44c15-cee0-4c07-a92c-766beb8fb174?h=%i&format=jpg" + }, + { + "gameTitle": "Costume Quest", + "gamePublisher": "THQ, Inc.", + "gameDeveloper": "Double Fine Productions, Inc.", + "gameGenres": [ + "A\u00e7\u00e3o e aventura", + "RPG" + ], + "releaseDate": "19/10/2010", + "extraGameProperties": { + "isInGamePass": true, + "controllerSupport": false, + "touchControllerSupport": false + }, + "xcloudUrl": "https://www.xbox.com/%s/play/games/costume-quest/BR74RLMH966K", + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.18636.69532389726997442.230b98e2-1f17-47ab-9d5a-06afb771f0de.57d2c274-ba74-4d0a-a98f-24a4ca808a82?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.47121.69532389726997442.230b98e2-1f17-47ab-9d5a-06afb771f0de.a4b185ec-6d05-4391-9919-046299c7651b?h=%i&format=jpg" + }, + { + "gameTitle": "DEATHLOOP", + "gamePublisher": "Bethesda Softworks", + "gameDeveloper": "Arkane Studios", + "gameGenres": [ + "A\u00e7\u00e3o e aventura", + "Jogos de tiros" + ], + "releaseDate": "20/09/2022", + "extraGameProperties": { + "isInGamePass": true, + "controllerSupport": false, + "touchControllerSupport": false + }, + "xcloudUrl": "https://www.xbox.com/%s/play/games/deathloop/9P5Z4530318L", + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.5858.14634955238674857.649b7ff9-0dfc-4951-9b65-c5d815215da6.90208516-ba3b-47a9-a130-ef94cf860f5b?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.26641.14634955238674857.649b7ff9-0dfc-4951-9b65-c5d815215da6.bacdd878-0313-4c58-9434-459afd7cf535?h=%i&format=jpg" + }, + { + "gameTitle": "Despot's Game", + "gamePublisher": "tinyBuild", + "gameDeveloper": "Konfa Games", + "gameGenres": [ + "A\u00e7\u00e3o e aventura", + "Outros" + ], + "releaseDate": "29/09/2022", + "extraGameProperties": { + "isInGamePass": true, + "controllerSupport": false, + "touchControllerSupport": false + }, + "xcloudUrl": "https://www.xbox.com/%s/play/games/despot's-game/9P5ZDVMCJMFD", + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.54530.14634731171917513.ee44ea98-341d-42e8-b67a-c2a4254a08a0.3a8876e7-694c-40d5-8efc-0264051414e8?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.13399.14634731171917513.ee44ea98-341d-42e8-b67a-c2a4254a08a0.4239454b-8c5a-4424-b410-2039ca63a84c?h=%i&format=jpg" + }, + { + "gameTitle": "Eville", + "gamePublisher": "Versus Evil, LLC.", + "gameDeveloper": "VestGames", + "gameGenres": [ + "Outros", + "RPG" + ], + "releaseDate": "11/10/2022", + "extraGameProperties": { + "isInGamePass": true, + "controllerSupport": false, + "touchControllerSupport": false + }, + "xcloudUrl": "https://www.xbox.com/%s/play/games/eville/9PC12991NZ5N", + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.31296.14112988465880137.944f8dc0-63f1-4f15-96aa-cab88a628053.65e7f8f4-3625-4a09-8aa7-fead27a7806f?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.19828.14112988465880137.944f8dc0-63f1-4f15-96aa-cab88a628053.3baaa95c-7788-4c73-aef5-b1cd1bd840b6?h=%i&format=jpg" + }, + { + "gameTitle": "Grounded", + "gamePublisher": "Xbox Game Studios", + "gameDeveloper": "Obsidian Entertainment", + "gameGenres": [ + "A\u00e7\u00e3o e aventura", + "RPG" + ], + "releaseDate": "27/09/2022", + "extraGameProperties": { + "isInGamePass": true, + "controllerSupport": false, + "touchControllerSupport": false + }, + "xcloudUrl": "https://www.xbox.com/%s/play/games/grounded/9PJTHRNVH62H", + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.36912.14280109286674604.94f3a3e8-211f-41e5-ac9c-d948b5377852.4e9bf257-12e0-4f04-9239-671818df45b0?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.27514.14280109286674604.1fb359e4-01eb-4818-b992-b225ce4869c9.c9733025-0344-4e66-aff1-ee3bcf9016a7?h=%i&format=jpg" + }, + { + "gameTitle": "Hardspace: Shipbreaker", + "gamePublisher": "Focus Entertainment", + "gameDeveloper": "Blackbird Interactive", + "gameGenres": [ + "A\u00e7\u00e3o e aventura", + "Simula\u00e7\u00e3o" + ], + "releaseDate": "20/09/2022", + "extraGameProperties": { + "isInGamePass": true, + "controllerSupport": false, + "touchControllerSupport": false + }, + "xcloudUrl": "https://www.xbox.com/%s/play/games/hardspace-shipbreaker/9ND8C4314ZZG", + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.11359.13552902647075103.9e24872e-3f43-4078-8279-1ddf37a77ab1.795f17b4-3acd-4226-91d9-5c6031d7899e?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.36125.13552902647075103.9e24872e-3f43-4078-8279-1ddf37a77ab1.246fb260-7ac0-4916-867b-dce60a943024?h=%i&format=jpg" + }, + { + "gameTitle": "Let's Build a Zoo", + "gamePublisher": "No More Robots", + "gameDeveloper": "Springloaded", + "gameGenres": [ + "Simula\u00e7\u00e3o", + "Estrat\u00e9gia" + ], + "releaseDate": "28/09/2022", + "extraGameProperties": { + "isInGamePass": true, + "controllerSupport": false, + "touchControllerSupport": false + }, + "xcloudUrl": "https://www.xbox.com/%s/play/games/let's-build-a-zoo/9P8N66DTG10T", + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.63900.14084512162357210.0d6eea09-167f-4aad-97d7-d4d17f848799.2a1722e7-328d-4bb3-b556-0d4acae1567b?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.15530.14084512162357210.0d6eea09-167f-4aad-97d7-d4d17f848799.9a461717-eb83-4a42-875e-7c96139197b1?h=%i&format=jpg" + }, + { + "gameTitle": "Medieval Dynasty", + "gamePublisher": "Toplitz Productions", + "gameDeveloper": "Render Cube", + "gameGenres": [ + "A\u00e7\u00e3o e aventura", + "RPG" + ], + "releaseDate": "06/10/2022", + "extraGameProperties": { + "isInGamePass": true, + "controllerSupport": false, + "touchControllerSupport": false + }, + "xcloudUrl": "https://www.xbox.com/%s/play/games/medieval-dynasty/9PDDP6ML6XHF", + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.26306.14156112272410024.03b91df3-d826-4d77-a692-6b75d9b18188.14e344a6-e6f9-43bd-8f8d-f6e965429119?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.63309.14156112272410024.03b91df3-d826-4d77-a692-6b75d9b18188.85b2f37e-0bd7-4de5-a925-bc86f2c59896?h=%i&format=jpg" + }, + { + "gameTitle": "Moonscars", + "gamePublisher": "Humble Games", + "gameDeveloper": "Black Mermaid", + "gameGenres": [ + "A\u00e7\u00e3o e aventura", + "Plataforma" + ], + "releaseDate": "27/09/2022", + "extraGameProperties": { + "isInGamePass": true, + "controllerSupport": false, + "touchControllerSupport": false + }, + "xcloudUrl": "https://www.xbox.com/%s/play/games/moonscars/9P77VD8MGJX8", + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.48607.14609228948314679.57b5d232-e029-48c3-a08c-a51885c8f604.a75be4f6-a08c-465f-8452-bf3c2ee5da75?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.16286.14609228948314679.57b5d232-e029-48c3-a08c-a51885c8f604.af5bedd3-16ab-4c9d-a23d-deda8b3b585f?h=%i&format=jpg" + }, + { + "gameTitle": "Patrulha Canina: Grand Prix", + "gamePublisher": "Outright Games Ltd.", + "gameDeveloper": "3DClouds", + "gameGenres": [ + "Fam\u00edlia e crian\u00e7as", + "A\u00e7\u00e3o e aventura" + ], + "releaseDate": "29/09/2022", + "extraGameProperties": { + "isInGamePass": true, + "controllerSupport": false, + "touchControllerSupport": false + }, + "xcloudUrl": "https://www.xbox.com/%s/play/games/patrulha-canina-grand-prix/9MWBT3HFCZ3Z", + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.30417.13842132658396836.fba80705-9bc9-45ad-84f9-621f75fe99ec.63412d4a-24e5-449a-9622-75435adb7a73?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.53527.13842132658396836.fba80705-9bc9-45ad-84f9-621f75fe99ec.a7d39a33-f2c3-408b-a88d-4ef40eb5c446?h=%i&format=jpg" + }, + { + "gameTitle": "Prodeus", + "gamePublisher": "Humble Games", + "gameDeveloper": "Bounding Box Software Inc.", + "gameGenres": [ + "A\u00e7\u00e3o e aventura", + "Jogos de tiros" + ], + "releaseDate": "23/06/2021", + "extraGameProperties": { + "isInGamePass": true, + "controllerSupport": false, + "touchControllerSupport": false + }, + "xcloudUrl": "https://www.xbox.com/%s/play/games/prodeus/9MZRSLLWKWDV", + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.25232.13864617007662897.01825ec5-fdc1-49fc-a5ac-f29f1860b3d2.5ab6a036-6d65-44b6-9ac8-7dba4e646ad1?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.9406.13864617007662897.01825ec5-fdc1-49fc-a5ac-f29f1860b3d2.4de0b1f4-bc29-45f6-9f06-cb0449d3d4d3?h=%i&format=jpg" + }, + { + "gameTitle": "Scorn", + "gamePublisher": "Kepler Interactive", + "gameDeveloper": "Ebb Software", + "gameGenres": [ + "A\u00e7\u00e3o e aventura" + ], + "releaseDate": "14/10/2022", + "extraGameProperties": { + "isInGamePass": true, + "controllerSupport": false, + "touchControllerSupport": false + }, + "xcloudUrl": "https://www.xbox.com/%s/play/games/scorn/9NM3TNRPQXLR", + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.51381.13699799412731780.9f7b812e-456c-430e-8cec-380f1ca9e4a2.dd9f4725-f6e0-4fe4-9484-9d5f22682786?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.16661.13699799412731780.1afb5b8c-d3cf-40b3-aa5e-f5e01adefd6c.71e32c0e-4c10-4a4b-a813-3478373b1769?h=%i&format=jpg" + } +] \ No newline at end of file From 26f14f130e0fc1108fc5ff36958de3d90dd0be87 Mon Sep 17 00:00:00 2001 From: LuanRoger Date: Wed, 19 Oct 2022 08:14:30 -0300 Subject: [PATCH 09/11] Fix non saving store url on JSON - Change the region of xcloud_extra_picker --- tools/internals/models/xcloud_game.py | 3 +- tools/xcloud_extras/consts.py | 2 +- tools/xcloud_game_picker.py | 2 +- tools/xcloud_games.json | 1171 ++++++++++++++++--------- tools/xcloud_recents.json | 49 +- 5 files changed, 798 insertions(+), 429 deletions(-) diff --git a/tools/internals/models/xcloud_game.py b/tools/internals/models/xcloud_game.py index 94ccc96..8bed405 100644 --- a/tools/internals/models/xcloud_game.py +++ b/tools/internals/models/xcloud_game.py @@ -47,7 +47,8 @@ def __iter__(self): "extraGameProperties": dict(self.extraGameProperties), "xcloudUrl": self.xcloudUrl, "tileGameImageUrl": self.tileGameImageUrl, - "gameImageUrl": self.gameImageUrl + "gameImageUrl": self.gameImageUrl, + "storeUrl": self.storeUrl }.items() def toJson(self): diff --git a/tools/xcloud_extras/consts.py b/tools/xcloud_extras/consts.py index 6b1da00..1814c67 100644 --- a/tools/xcloud_extras/consts.py +++ b/tools/xcloud_extras/consts.py @@ -1,2 +1,2 @@ -XCLOUD_RECENTLY_ADDED_URL: str = "https://www.xbox.com/pt-BR/play/gallery/recently-added" +XCLOUD_RECENTLY_ADDED_URL: str = "https://www.xbox.com/en-US/play/gallery/recently-added" RECENTLY_ADDED_JSON_FILE: str = "./xcloud_recents.json" \ No newline at end of file diff --git a/tools/xcloud_game_picker.py b/tools/xcloud_game_picker.py index b740a56..c7b58f5 100644 --- a/tools/xcloud_game_picker.py +++ b/tools/xcloud_game_picker.py @@ -24,7 +24,7 @@ while not done: for game in getGamesInGrid(games_grid): game_url: str = game.get_attribute("href") - if(add_formater_game_url_server(game_url) in [geted_game.xcloudUrl for geted_game in games_list]): + if(add_formater_game_url_server(game_url, XCLOUD_BASE_URL) in [geted_game.xcloudUrl for geted_game in games_list]): continue game_image_element = game.find_element(by=By.TAG_NAME, value="img") diff --git a/tools/xcloud_games.json b/tools/xcloud_games.json index 3c21fe3..cde4542 100644 --- a/tools/xcloud_games.json +++ b/tools/xcloud_games.json @@ -14,7 +14,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/7-days-to-die/BRL7GC0GP1BM", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.50759.69802328231064156.03ff84cc-b6b1-4226-8e6c-545d183e5fbf.6c46b7d8-06fd-4959-8342-440580385ce9?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.21205.69802328231064156.03ff84cc-b6b1-4226-8e6c-545d183e5fbf.dfb75b7e-4f40-4461-a762-0911a780e985?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.21205.69802328231064156.03ff84cc-b6b1-4226-8e6c-545d183e5fbf.dfb75b7e-4f40-4461-a762-0911a780e985?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/7-days-to-die/BRL7GC0GP1BM" }, { "gameTitle": "A Memoir Blue", @@ -31,7 +32,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/a-memoir-blue/9NL4KTK0N4CG", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.55802.13714290489749263.fa316741-1615-4cad-942c-7c2fddc7b069.86d4a18f-cf41-4fa9-92af-8c95ca311c96?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.12478.13714290489749263.fa316741-1615-4cad-942c-7c2fddc7b069.f1bbf8b2-4ab6-4295-8bea-d41b506e812a?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.12478.13714290489749263.fa316741-1615-4cad-942c-7c2fddc7b069.f1bbf8b2-4ab6-4295-8bea-d41b506e812a?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/a-memoir-blue/9NL4KTK0N4CG" }, { "gameTitle": "A Plague Tale: Requiem", @@ -49,7 +51,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/a-plague-tale-requiem/9ND0JVB184XL", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.60562.13558336166432541.beb57fbe-cc4b-40c5-ba76-c8112867dea2.9a69e497-4f9f-495d-9ac6-f8956b491d91?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.59830.13558336166432541.beb57fbe-cc4b-40c5-ba76-c8112867dea2.f764a45c-f860-483f-b264-aa9041f2bb62?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.59830.13558336166432541.beb57fbe-cc4b-40c5-ba76-c8112867dea2.f764a45c-f860-483f-b264-aa9041f2bb62?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/a-plague-tale-requiem/9ND0JVB184XL" }, { "gameTitle": "ANVIL : Vault Breaker (Game Preview)", @@ -67,7 +70,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/anvil-vault-breaker-game-preview/9PJPV2PC3MWR", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.19212.14277836659846754.5f133eeb-446d-45d9-bc2f-294eea5a641c.54b4f184-784c-427a-ae39-4b1463a58a57?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.25606.14277836659846754.5f133eeb-446d-45d9-bc2f-294eea5a641c.946c1f7e-7d81-4650-b287-12f6588cac1b?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.25606.14277836659846754.5f133eeb-446d-45d9-bc2f-294eea5a641c.946c1f7e-7d81-4650-b287-12f6588cac1b?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/anvil-vault-breaker-game-preview/9PJPV2PC3MWR" }, { "gameTitle": "ARK: Ultimate Survivor Edition", @@ -84,7 +88,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/ark-ultimate-survivor-edition/9N5JRWWGMS1R", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.14842.14036931078975578.35527dd4-bd1c-43d9-90ff-3a801a47df6a.e296f313-9109-4635-a3cb-14b747fb2230?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.30358.14036931078975578.35527dd4-bd1c-43d9-90ff-3a801a47df6a.871f208d-e7ba-4898-b725-e9e3d3f90797?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.30358.14036931078975578.35527dd4-bd1c-43d9-90ff-3a801a47df6a.871f208d-e7ba-4898-b725-e9e3d3f90797?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/ark-ultimate-survivor-edition/9N5JRWWGMS1R" }, { "gameTitle": "ASTRONEER", @@ -102,7 +107,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/astroneer/9NBLGGH43KZB", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.64849.13510798887933723.57e43f19-4066-429e-b1a2-caea56e427b4.860c35a4-ccbf-413e-9574-1c7c8826d6c6?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.29512.13510798887933723.2e918b0b-2171-4602-baa4-ab1677624f25.465577c8-a626-4bf3-b4a1-19911855c773?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.29512.13510798887933723.2e918b0b-2171-4602-baa4-ab1677624f25.465577c8-a626-4bf3-b4a1-19911855c773?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/astroneer/9NBLGGH43KZB" }, { "gameTitle": "Aliens: Fireteam Elite", @@ -120,7 +126,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/aliens-fireteam-elite/9PG28RXDG9GQ", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.59370.14189206062547849.34667497-3c97-48d3-916d-0cd555e3aee9.2a32a391-5b37-4ec9-9fc1-7bb4159de6b9?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.30369.14189206062547849.34667497-3c97-48d3-916d-0cd555e3aee9.057ac9cb-1d5f-4c0e-b5bc-7a78774595a7?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.30369.14189206062547849.34667497-3c97-48d3-916d-0cd555e3aee9.057ac9cb-1d5f-4c0e-b5bc-7a78774595a7?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/aliens-fireteam-elite/9PG28RXDG9GQ" }, { "gameTitle": "Among Us", @@ -137,7 +144,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/among-us/9NG07QJNK38J", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.21162.13589262686196899.16e3418a-cbf2-4748-9724-1c9dc9b7a0b9.14afafe9-1b03-4df0-95ad-12e2712a3b53?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.14626.13589262686196899.12354b81-d410-4255-b6aa-9f9a68a694ae.dec2ecaf-85b7-4792-b5aa-13c1a3b31c5e?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.14626.13589262686196899.12354b81-d410-4255-b6aa-9f9a68a694ae.dec2ecaf-85b7-4792-b5aa-13c1a3b31c5e?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/among-us/9NG07QJNK38J" }, { "gameTitle": "Aragami 2", @@ -154,7 +162,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/aragami-2/9PN9WG83X4XF", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.22986.14347616248294866.f2c12ab4-ed34-4e28-b51d-b89260f65198.c2f48fe0-70e2-4a54-af39-02de867401ba?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.17371.14347616248294866.82c078ff-2f36-4b77-be61-2ddf95968bb4.e8483161-dc38-40ac-8ad4-902baf34e5cf?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.17371.14347616248294866.82c078ff-2f36-4b77-be61-2ddf95968bb4.e8483161-dc38-40ac-8ad4-902baf34e5cf?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/aragami-2/9PN9WG83X4XF" }, { "gameTitle": "Archvale", @@ -172,7 +181,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/archvale/9P3MGM8ZCS5D", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.20086.14539916772838877.ac2b2d42-d84b-4c24-8fe1-11b90b3ed1f0.291df9fa-27ba-42d9-b74b-40c45a59f1b8?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.48975.14539916772838877.ac2b2d42-d84b-4c24-8fe1-11b90b3ed1f0.a216b11a-a1bc-401f-9180-09ef084ba48a?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.48975.14539916772838877.ac2b2d42-d84b-4c24-8fe1-11b90b3ed1f0.a216b11a-a1bc-401f-9180-09ef084ba48a?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/archvale/9P3MGM8ZCS5D" }, { "gameTitle": "As Dusk Falls", @@ -190,7 +200,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/as-dusk-falls/9NR7XDNVP5SW", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.46746.14387733153613072.28665954-14dc-4229-8e3c-0257e25089cb.46b89faa-6b2f-433b-aefc-16e5063ea2af?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.20006.14387733153613072.563f42df-3a88-4df7-999d-62897cc0ccde.a7393a26-d54a-42bd-b304-886b4dfb025d?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.20006.14387733153613072.563f42df-3a88-4df7-999d-62897cc0ccde.a7393a26-d54a-42bd-b304-886b4dfb025d?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/as-dusk-falls/9NR7XDNVP5SW" }, { "gameTitle": "Assassin's Creed\u00ae Odyssey", @@ -207,7 +218,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/assassin's-creed-odyssey/BW9TWC8L4JCS", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.45811.71972716530068101.91350a92-63c5-4583-96a7-c8e03d0d6c67.a5f46c28-e00c-40a7-b5e0-a723a407bb16?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.53783.71972716530068101.ccdcadf1-1d2a-49f2-9c37-0b0a27e5a53c.6d60329c-2f2a-4ac9-9dd3-2f132d5c3b6c?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.53783.71972716530068101.ccdcadf1-1d2a-49f2-9c37-0b0a27e5a53c.6d60329c-2f2a-4ac9-9dd3-2f132d5c3b6c?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/assassin's-creed-odyssey/BW9TWC8L4JCS" }, { "gameTitle": "Assassin's Creed\u00ae Origins", @@ -224,7 +236,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/assassin's-creed-origins/BZGJRJC1FGF3", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.24317.63657969076271726.d61cc1bb-fe99-40ef-b061-bded231757be.c17f684c-0c90-4d39-911e-8bd8c0622587?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.51508.63657969076271726.154f5a09-55ab-4b31-bc57-4e0335fab06a.8c56d9de-b95f-4f50-931b-818bc7d5711c?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.51508.63657969076271726.154f5a09-55ab-4b31-bc57-4e0335fab06a.8c56d9de-b95f-4f50-931b-818bc7d5711c?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/assassin's-creed-origins/BZGJRJC1FGF3" }, { "gameTitle": "BLiNX: The Time Sweeper", @@ -241,7 +254,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/blinx-the-time-sweeper/BRG51C5MWFSG", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.1712.69676224553003885.7746d59f-9224-4b66-8097-e540a8ad4b00.a2e18719-7a03-42b0-9324-907f92092527?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.12688.69676224553003885.7746d59f-9224-4b66-8097-e540a8ad4b00.f5dd36da-c5f1-412a-83a3-257dfeb1ab0d?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.12688.69676224553003885.7746d59f-9224-4b66-8097-e540a8ad4b00.f5dd36da-c5f1-412a-83a3-257dfeb1ab0d?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/blinx-the-time-sweeper/BRG51C5MWFSG" }, { "gameTitle": "Back 4 Blood", @@ -258,7 +272,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/back-4-blood/BXLL06QN8HVP", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.49309.63183727176145146.d84d29ef-df3a-4a5d-96b4-f1a7d9797aec.7b42c961-b9e0-484c-b079-f461f64e1f53?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.19877.63183727176145146.d84d29ef-df3a-4a5d-96b4-f1a7d9797aec.681271f3-8d03-4b06-a356-b7d53722ea8d?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.19877.63183727176145146.d84d29ef-df3a-4a5d-96b4-f1a7d9797aec.681271f3-8d03-4b06-a356-b7d53722ea8d?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/back-4-blood/BXLL06QN8HVP" }, { "gameTitle": "Backbone", @@ -275,7 +290,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/backbone/9NC9TNXS9C8G", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.3533.13571577878997765.bf0e584f-1da0-45dc-9616-f8707de4bf08.688aec25-927e-4198-b219-643c650b7930?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.51040.13571577878997765.bf0e584f-1da0-45dc-9616-f8707de4bf08.1774e625-9436-4f3c-a1c3-545d1d103e1b?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.51040.13571577878997765.bf0e584f-1da0-45dc-9616-f8707de4bf08.1774e625-9436-4f3c-a1c3-545d1d103e1b?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/backbone/9NC9TNXS9C8G" }, { "gameTitle": "Banjo Kazooie: N n B", @@ -293,7 +309,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/banjo-kazooie-n-n-b/BVR64CDJ01FJ", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.34826.71100151761088573.88824642-fc7e-4e99-9b5b-32e26f7c27b9.8a1cccf6-01d0-48c6-bd1a-0d03df399bba?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.32292.71100151761088573.88824642-fc7e-4e99-9b5b-32e26f7c27b9.623b6c28-ef2b-4ce0-81b1-6605506c5483?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.32292.71100151761088573.88824642-fc7e-4e99-9b5b-32e26f7c27b9.623b6c28-ef2b-4ce0-81b1-6605506c5483?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/banjo-kazooie-n-n-b/BVR64CDJ01FJ" }, { "gameTitle": "Banjo-Kazooie", @@ -311,7 +328,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/banjo-kazooie/BSJG7TTSWVJ2", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.58897.70306648669442933.0ad02883-9547-43ed-a595-2a807684ce15.fa8d898f-1097-46fa-b35d-22ceefda2a7a?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.14529.70306648669442933.0ad02883-9547-43ed-a595-2a807684ce15.9d0de285-8d54-44e2-9511-e809431c6153?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.14529.70306648669442933.0ad02883-9547-43ed-a595-2a807684ce15.9d0de285-8d54-44e2-9511-e809431c6153?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/banjo-kazooie/BSJG7TTSWVJ2" }, { "gameTitle": "Banjo-Tooie", @@ -329,7 +347,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/banjo-tooie/BX27S00SKW1V", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.2699.63435052096425467.cd1eef72-5707-4f2b-807d-ab3c5baf858c.9ebaa8fc-f1bf-49e8-93fd-62833dbb6b26?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.9738.63435052096425467.cd1eef72-5707-4f2b-807d-ab3c5baf858c.45f7306e-e034-4a55-a580-569c4f0d4d67?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.9738.63435052096425467.cd1eef72-5707-4f2b-807d-ab3c5baf858c.45f7306e-e034-4a55-a580-569c4f0d4d67?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/banjo-tooie/BX27S00SKW1V" }, { "gameTitle": "Bassmaster\u00ae Fishing 2022", @@ -347,7 +366,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/bassmaster-fishing-2022/9MTTMQ6WSDP8", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.64699.13801370712672953.31e1b8c9-9ecc-4cb2-935c-21a9de3e2027.d4b695ec-a36d-4be2-b2d7-f0ff46f4de0d?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.40177.13801370712672953.31e1b8c9-9ecc-4cb2-935c-21a9de3e2027.41a44ed6-38ba-482c-84c7-c67e6ed0dbdf?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.40177.13801370712672953.31e1b8c9-9ecc-4cb2-935c-21a9de3e2027.41a44ed6-38ba-482c-84c7-c67e6ed0dbdf?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/bassmaster-fishing-2022/9MTTMQ6WSDP8" }, { "gameTitle": "Batman\u2122: Arkham Knight", @@ -364,7 +384,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/batman-arkham-knight/BSLX1RNXR6H7", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.50680.69836087516172366.d802940c-fd8a-4174-8a68-e41a2475e1a1.efa1f648-fb98-4078-80cf-06f47811b1fa?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.30637.69836087516172366.d802940c-fd8a-4174-8a68-e41a2475e1a1.77b11b55-654c-4be3-8804-09728b3a6901?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.30637.69836087516172366.d802940c-fd8a-4174-8a68-e41a2475e1a1.77b11b55-654c-4be3-8804-09728b3a6901?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/batman-arkham-knight/BSLX1RNXR6H7" }, { "gameTitle": "Battlefield 4", @@ -381,7 +402,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/battlefield-4/BP15SF17LH13", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.18274.67660042887481018.7de2bfcd-48ef-4a6c-bba4-e65d208d67ec.f299bd07-f6b3-4870-b5e6-786c0a4c3e92?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.27970.67660042887481018.7de2bfcd-48ef-4a6c-bba4-e65d208d67ec.238fb864-efda-47a0-a54e-bc7b2ef112c5?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.27970.67660042887481018.7de2bfcd-48ef-4a6c-bba4-e65d208d67ec.238fb864-efda-47a0-a54e-bc7b2ef112c5?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/battlefield-4/BP15SF17LH13" }, { "gameTitle": "Battlefield\u2122 1 Revolution", @@ -398,7 +420,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/battlefield-1-revolution/BPL68T0XK96W", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.39800.68596255437297164.99e6fb73-cd5e-440f-90c2-d8d2eb40a69d.5d9b9ea9-9816-4492-82df-fefa1a6c0f94?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.20517.68596255437297164.99e6fb73-cd5e-440f-90c2-d8d2eb40a69d.b89ed24d-ec2e-4720-a295-935fdbc37f7f?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.20517.68596255437297164.99e6fb73-cd5e-440f-90c2-d8d2eb40a69d.b89ed24d-ec2e-4720-a295-935fdbc37f7f?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/battlefield-1-revolution/BPL68T0XK96W" }, { "gameTitle": "Battlefield\u2122 V", @@ -415,7 +438,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/battlefield-v/BZ2N7TQ0XCF2", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.242.64032621253256243.9745cf01-8239-4973-8193-31de18936f03.a8c3c497-3428-45cb-85b3-d84dcb2743bd?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.17271.64032621253256243.9745cf01-8239-4973-8193-31de18936f03.29cc6447-5d53-494e-866f-9579da2611c9?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.17271.64032621253256243.9745cf01-8239-4973-8193-31de18936f03.29cc6447-5d53-494e-866f-9579da2611c9?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/battlefield-v/BZ2N7TQ0XCF2" }, { "gameTitle": "Battletoads", @@ -433,7 +457,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/battletoads/9N7GCF5SGCXC", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.14695.14065499269907016.670ddf59-3954-4cfa-927c-60562b664545.56c9f977-b0a8-4b8e-8644-609b768fbc51?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.11695.14065499269907016.249670e2-cad9-48bb-aa0f-309d712ede80.314fc433-a37a-49dc-8282-714cca415277?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.11695.14065499269907016.249670e2-cad9-48bb-aa0f-309d712ede80.314fc433-a37a-49dc-8282-714cca415277?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/battletoads/9N7GCF5SGCXC" }, { "gameTitle": "Beacon Pines", @@ -451,7 +476,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/beacon-pines/9P4R2M0NRWNK", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.23560.14588206397851258.078192f2-519f-4a81-b68d-2dbd6199f2c2.af953250-54af-4a2a-be0c-163b68917421?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.39650.14588206397851258.078192f2-519f-4a81-b68d-2dbd6199f2c2.0f659ae9-51f1-4a1d-a086-0a5f165d5b5f?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.39650.14588206397851258.078192f2-519f-4a81-b68d-2dbd6199f2c2.0f659ae9-51f1-4a1d-a086-0a5f165d5b5f?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/beacon-pines/9P4R2M0NRWNK" }, { "gameTitle": "Before We Leave", @@ -469,7 +495,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/before-we-leave/9N360TZQZ0TR", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.64240.13938260246595322.6dab1a29-4d96-4a37-b22b-2baaeba55633.f371254b-cef0-4600-ad24-a5c03f04615a?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.29553.13938260246595322.6dab1a29-4d96-4a37-b22b-2baaeba55633.ca85b407-58d8-478e-9933-a2e851b86b9c?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.29553.13938260246595322.6dab1a29-4d96-4a37-b22b-2baaeba55633.ca85b407-58d8-478e-9933-a2e851b86b9c?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/before-we-leave/9N360TZQZ0TR" }, { "gameTitle": "Ben 10: Uma super viagem", @@ -487,10 +514,11 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/ben-10-power-trip/9NJWFF2KHL6H", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.30849.13672727399820228.e1322d27-4961-46da-9c7b-c310d3e28cb1.90cdc8cc-0bdd-4b06-ba46-71549ba3bf46?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.30224.13672727399820228.e1322d27-4961-46da-9c7b-c310d3e28cb1.27924fbb-bfd7-429d-96ac-7ad0ebbfeb5a?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.30224.13672727399820228.e1322d27-4961-46da-9c7b-c310d3e28cb1.27924fbb-bfd7-429d-96ac-7ad0ebbfeb5a?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/ben-10-uma-super-viagem/9NJWFF2KHL6H" }, { - "gameTitle": "Besiege Console (Game Preview)", + "gameTitle": "", "gamePublisher": "Spiderling Studios", "gameDeveloper": "Spiderling Studios", "gameGenres": [ @@ -504,7 +532,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/besiege-console-game-preview/9PPFBQG81Q5J", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.45096.14326017138836689.0723eba4-7b1a-4eb0-8e6a-5c58708793ed.732b50ba-da04-4fbe-9368-64a7e03fcebd?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.56740.14326017138836689.ccbb306b-1919-48c6-833f-668c3ac421bc.26230173-5834-42f1-b4e2-886b60702820?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.56740.14326017138836689.ccbb306b-1919-48c6-833f-668c3ac421bc.26230173-5834-42f1-b4e2-886b60702820?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/besiege-console-game-preview/9PPFBQG81Q5J" }, { "gameTitle": "Black Desert", @@ -521,7 +550,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/black-desert/BTPDCJXNFSZL", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.55168.70463400880857175.d5efc868-ff4c-4751-bfbd-5f5b12ceed46.f8533b63-65dc-4100-9db6-a2b328bf176a?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.12267.70463400880857175.d5efc868-ff4c-4751-bfbd-5f5b12ceed46.900294d9-8c32-4663-be3f-233b82bc6e0c?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.12267.70463400880857175.d5efc868-ff4c-4751-bfbd-5f5b12ceed46.900294d9-8c32-4663-be3f-233b82bc6e0c?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/black-desert/BTPDCJXNFSZL" }, { "gameTitle": "Bleeding Edge", @@ -539,7 +569,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/bleeding-edge/9NX6XGVJ0J3D", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.5290.14431087147384961.13dc1a18-3532-477b-b2d2-772256efc040.6fab8e78-8a3d-4b85-a5b1-33f32aeb8ea3?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.1277.14431087147384961.13dc1a18-3532-477b-b2d2-772256efc040.0a9d1479-3e71-4a22-ac8d-22b89141aba7?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.1277.14431087147384961.13dc1a18-3532-477b-b2d2-772256efc040.0a9d1479-3e71-4a22-ac8d-22b89141aba7?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/bleeding-edge/9NX6XGVJ0J3D" }, { "gameTitle": "Breathedge", @@ -557,7 +588,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/breathedge/9NR7LV9PB9SD", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.64781.14387940932825223.b2bcb764-5659-4e3e-be75-fea7de3ead94.36290a14-76b1-4cda-b2b6-1991f2e95476?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.33682.14387940932825223.37633fb2-606d-4d0c-a1d2-87cd28b6a2ce.61b72a2b-5fc2-4e4e-b64a-c1e458f76e9f?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.33682.14387940932825223.37633fb2-606d-4d0c-a1d2-87cd28b6a2ce.61b72a2b-5fc2-4e4e-b64a-c1e458f76e9f?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/breathedge/9NR7LV9PB9SD" }, { "gameTitle": "Bridge Constructor Portal", @@ -575,7 +607,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/bridge-constructor-portal/BNRX1DN6GXM6", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.53942.68088896991488711.7d62a8af-1aa7-44bf-a425-105cabf5c97f.6aaec0f6-8abc-4ed7-a0dc-4ba047115e76?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.43524.68088896991488711.7d62a8af-1aa7-44bf-a425-105cabf5c97f.92eef38e-7a3d-42fa-b1c9-d21c1e4f01de?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.43524.68088896991488711.7d62a8af-1aa7-44bf-a425-105cabf5c97f.92eef38e-7a3d-42fa-b1c9-d21c1e4f01de?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/bridge-constructor-portal/BNRX1DN6GXM6" }, { "gameTitle": "Broken Age", @@ -592,7 +625,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/broken-age/BRT1K9FV4LRR", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.11626.69320940561073110.189571f5-bf61-4250-851f-3d627dfcdc29.bed721b9-7f8d-4800-ad0b-7a07807c0863?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.8857.69320940561073110.189571f5-bf61-4250-851f-3d627dfcdc29.26a2dcd6-c80f-45bf-977a-ead079284fe9?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.8857.69320940561073110.189571f5-bf61-4250-851f-3d627dfcdc29.26a2dcd6-c80f-45bf-977a-ead079284fe9?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/broken-age/BRT1K9FV4LRR" }, { "gameTitle": "Bugsnax", @@ -609,7 +643,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/bugsnax/9P0FQ0XCV0LB", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.19620.14527663576451809.5be6f978-a9ed-42c5-8ee1-87dc4d947724.7e2ac7bd-0040-4c16-80e1-3a7cf1d566a7?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.60740.14527663576451809.5be6f978-a9ed-42c5-8ee1-87dc4d947724.3c2a0c4e-eb2b-43e9-98d6-fff334b24473?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.60740.14527663576451809.5be6f978-a9ed-42c5-8ee1-87dc4d947724.3c2a0c4e-eb2b-43e9-98d6-fff334b24473?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/bugsnax/9P0FQ0XCV0LB" }, { "gameTitle": "Chinatown Detective Agency", @@ -627,7 +662,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/chinatown-detective-agency/9NV2VTVG0L31", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.32647.14407039492580836.0ee1fbde-13a0-4676-975c-913f27fd0ac6.5402bc40-0e5f-434f-8cc2-a738028aac3c?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.42184.14407039492580836.0ee1fbde-13a0-4676-975c-913f27fd0ac6.0b6393da-0bb6-4e42-bf18-548d6f7a15cb?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.42184.14407039492580836.0ee1fbde-13a0-4676-975c-913f27fd0ac6.0b6393da-0bb6-4e42-bf18-548d6f7a15cb?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/chinatown-detective-agency/9NV2VTVG0L31" }, { "gameTitle": "Chivalry 2", @@ -645,7 +681,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/chivalry-2/9N7CJX93ZGWN", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.61947.14071745200459129.81e3e86f-3ab4-4027-b9a1-81f595fcb505.fc2487e4-7785-4a73-b2ad-b94aa01a7e7f?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.56595.14071745200459129.81e3e86f-3ab4-4027-b9a1-81f595fcb505.bcc44c15-cee0-4c07-a92c-766beb8fb174?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.56595.14071745200459129.81e3e86f-3ab4-4027-b9a1-81f595fcb505.bcc44c15-cee0-4c07-a92c-766beb8fb174?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/chivalry-2/9N7CJX93ZGWN" }, { "gameTitle": "Chorus", @@ -663,7 +700,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/chorus/9NN1Z8LHMFBV", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.19672.13751787478651765.747d9b13-75e6-4c34-a196-72624dc19de6.c2d9f22b-a5f5-4802-997c-7a5b2780895d?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.57673.13751787478651765.747d9b13-75e6-4c34-a196-72624dc19de6.82444fe5-dcf8-40d1-bbeb-d51c254f00f5?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.57673.13751787478651765.747d9b13-75e6-4c34-a196-72624dc19de6.82444fe5-dcf8-40d1-bbeb-d51c254f00f5?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/chorus/9NN1Z8LHMFBV" }, { "gameTitle": "Cities: Skylines - Xbox One Edition", @@ -680,7 +718,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/cities-skylines---xbox-one-edition/C4GH8N6ZXG5L", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.42716.66617542682682743.811213f2-2c45-4145-973d-fe3e3774b196.c2dab488-7382-45d1-bf6c-6b8be6e3fd96?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.59972.66617542682682743.811213f2-2c45-4145-973d-fe3e3774b196.2eb7da78-667d-41a9-b63f-f3f7a8d077c7?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.59972.66617542682682743.811213f2-2c45-4145-973d-fe3e3774b196.2eb7da78-667d-41a9-b63f-f3f7a8d077c7?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/cities-skylines---xbox-one-edition/C4GH8N6ZXG5L" }, { "gameTitle": "Citizen Sleeper", @@ -698,7 +737,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/citizen-sleeper/9N6F97F9WGL0", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.55562.14019812399166283.86c56d8c-9235-45b0-85dd-dc9647631d6e.d1c98280-ac63-4f01-85ed-41e58c8fac35?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.15989.14019812399166283.86c56d8c-9235-45b0-85dd-dc9647631d6e.e8fa765b-6271-464c-ade7-54a3a44b004a?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.15989.14019812399166283.86c56d8c-9235-45b0-85dd-dc9647631d6e.e8fa765b-6271-464c-ade7-54a3a44b004a?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/citizen-sleeper/9N6F97F9WGL0" }, { "gameTitle": "ClusterTruck", @@ -716,7 +756,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/clustertruck/BX4J85JZNGXQ", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.11196.63460736466173537.43accb13-0658-4cb9-a3a9-2dd4b18ae15e.c12756d4-a28f-46d2-89d0-43593731f0d5?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.32391.63460736466173537.43accb13-0658-4cb9-a3a9-2dd4b18ae15e.430f7951-125b-49ac-867b-8d7f482656c4?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.32391.63460736466173537.43accb13-0658-4cb9-a3a9-2dd4b18ae15e.430f7951-125b-49ac-867b-8d7f482656c4?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/clustertruck/BX4J85JZNGXQ" }, { "gameTitle": "Coffee Talk", @@ -734,7 +775,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/coffee-talk/9N17CM38WNN8", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.30354.13910765112993759.85e2446b-e867-4d17-a642-a74c828870ce.c92e92ee-4550-424d-9389-a717815bd19f?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.28099.13910765112993759.85e2446b-e867-4d17-a642-a74c828870ce.1983b447-eff5-420a-9403-1b29145df76b?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.28099.13910765112993759.85e2446b-e867-4d17-a642-a74c828870ce.1983b447-eff5-420a-9403-1b29145df76b?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/coffee-talk/9N17CM38WNN8" }, { "gameTitle": "Commandos 3 - HD Remaster", @@ -751,7 +793,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/commandos-3---hd-remaster/9N1NBJNDD08J", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.10518.13897860358759559.772dd4c1-b1a6-4046-9b09-a4b441fe30aa.f56556c8-28de-4893-a4f4-59694207b18d?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.37079.13897860358759559.316014c3-437b-4952-8fa8-f9088cd54b42.47709cf6-b301-4f26-b121-95ef69985843?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.37079.13897860358759559.316014c3-437b-4952-8fa8-f9088cd54b42.47709cf6-b301-4f26-b121-95ef69985843?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/commandos-3---hd-remaster/9N1NBJNDD08J" }, { "gameTitle": "Conan Exiles", @@ -768,7 +811,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/conan-exiles/C2X6ZCNKN2WR", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.44164.69492393318249993.eb0b8c74-1474-48d0-b663-4ec3bebca223.d1386244-7094-4e00-bff5-1aceb0260ec1?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.58248.69492393318249993.eb0b8c74-1474-48d0-b663-4ec3bebca223.64a67385-b146-458c-b7a2-bf359de3fe60?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.58248.69492393318249993.eb0b8c74-1474-48d0-b663-4ec3bebca223.64a67385-b146-458c-b7a2-bf359de3fe60?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/conan-exiles/BS46X64QCJ5J" }, { "gameTitle": "Contrast", @@ -785,7 +829,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/contrast/BSLTQT4L0RLV", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.19374.69833471246794389.8c89db73-09ce-4d32-a517-3dd3f2acf25f.d80b8b92-815d-4eed-a529-c7ba2376e8bf?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.43400.69833471246794389.8c89db73-09ce-4d32-a517-3dd3f2acf25f.320dba27-86d4-4e1f-8098-18e0cf93b3e7?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.43400.69833471246794389.8c89db73-09ce-4d32-a517-3dd3f2acf25f.320dba27-86d4-4e1f-8098-18e0cf93b3e7?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/contrast/BSLTQT4L0RLV" }, { "gameTitle": "Cooking Simulator", @@ -802,14 +847,18 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/cooking-simulator/9N3DKKRHSJBT", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.40773.13934302625463282.ce885e17-8e35-4fa6-951c-1f7e58c35e4f.d2b59c71-aed1-4d55-b09f-70e66bdac381?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.32115.13934302625463282.ce885e17-8e35-4fa6-951c-1f7e58c35e4f.aedd415c-053d-49a0-a707-3aba18aa2a4f?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.32115.13934302625463282.ce885e17-8e35-4fa6-951c-1f7e58c35e4f.aedd415c-053d-49a0-a707-3aba18aa2a4f?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/cooking-simulator/9N3DKKRHSJBT" }, { - "gameTitle": "", - "gamePublisher": "", - "gameDeveloper": "", - "gameGenres": [], - "releaseDate": "", + "gameTitle": "Costume Quest", + "gamePublisher": "THQ, Inc.", + "gameDeveloper": "Double Fine Productions, Inc.", + "gameGenres": [ + "A\u00e7\u00e3o e aventura", + "RPG" + ], + "releaseDate": "19/10/2010", "extraGameProperties": { "isInGamePass": true, "controllerSupport": false, @@ -817,7 +866,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/costume-quest/BR74RLMH966K", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.18636.69532389726997442.230b98e2-1f17-47ab-9d5a-06afb771f0de.57d2c274-ba74-4d0a-a98f-24a4ca808a82?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.47121.69532389726997442.230b98e2-1f17-47ab-9d5a-06afb771f0de.a4b185ec-6d05-4391-9919-046299c7651b?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.47121.69532389726997442.230b98e2-1f17-47ab-9d5a-06afb771f0de.a4b185ec-6d05-4391-9919-046299c7651b?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/costume-quest/BR74RLMH966K" }, { "gameTitle": "Crackdown 3", @@ -834,7 +884,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/crackdown-3/9NXR6469DM2P", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.63949.14494915233617130.8bc2d647-9563-4ed3-9081-f4a771cfa3a6.6504c19a-15a5-40a6-9231-343598749956?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.7524.14494915233617130.8bc2d647-9563-4ed3-9081-f4a771cfa3a6.a1bdb61c-5265-420e-a5d0-307940ca5f9f?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.7524.14494915233617130.8bc2d647-9563-4ed3-9081-f4a771cfa3a6.a1bdb61c-5265-420e-a5d0-307940ca5f9f?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/crackdown-3/9NXR6469DM2P" }, { "gameTitle": "Cricket 22", @@ -851,7 +902,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/cricket-22/9NWNX54ZMT1K", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.1551.14445715000850412.83840d24-19b4-4894-8f10-770047ae8042.fb44a74d-b647-4469-8076-46dc98b8c5d8?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.23609.14445715000850412.0b9795f4-c737-4dce-a154-a9d7431b8c65.53a1b7f8-5e0e-4349-b9d0-e64095e2934b?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.23609.14445715000850412.0b9795f4-c737-4dce-a154-a9d7431b8c65.53a1b7f8-5e0e-4349-b9d0-e64095e2934b?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/cricket-22/9NWNX54ZMT1K" }, { "gameTitle": "Crimson Skies\u00ae: High Road to Revenge\u2122", @@ -868,7 +920,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/crimson-skies-high-road-to-revenge/C4B8XR1LCXR5", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.48725.66564363245508968.4a646a68-6736-4349-ad5c-933bc20f715a.b8eb2ce7-ae0f-4e67-8135-ff43f6e74122?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.18821.66564363245508968.4a646a68-6736-4349-ad5c-933bc20f715a.39a7b0fa-23ae-4928-925c-001eaa5d4dc3?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.18821.66564363245508968.4a646a68-6736-4349-ad5c-933bc20f715a.39a7b0fa-23ae-4928-925c-001eaa5d4dc3?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/crimson-skies-high-road-to-revenge/C4B8XR1LCXR5" }, { "gameTitle": "CrossfireX: Operation Catalyst", @@ -885,7 +938,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/crossfirex-operation-catalyst/9N5Q1VBD1ZWZ", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.27725.14033786176609620.31182a97-1d0c-40d0-8327-f1d454daeeaa.f29602cc-3292-41e1-8d36-67e405056c36?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.51388.14033786176609620.31182a97-1d0c-40d0-8327-f1d454daeeaa.c3bd776c-b9c7-401f-8cb5-7fb5e3150075?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.51388.14033786176609620.31182a97-1d0c-40d0-8327-f1d454daeeaa.c3bd776c-b9c7-401f-8cb5-7fb5e3150075?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/crossfirex-operation-catalyst/9N5Q1VBD1ZWZ" }, { "gameTitle": "Crown Trick", @@ -903,7 +957,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/crown-trick/9NGCPXQG3NLZ", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.23005.13647911596394486.628fddf1-5978-4b67-a823-e73a2ca794eb.3bd24da1-c7fe-4d16-bf4c-e882c4b02355?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.4611.13647911596394486.d3982cea-7cad-416c-bd96-c919d4e1778f.a1d19137-13d2-4082-8f37-d131385fcc15?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.4611.13647911596394486.d3982cea-7cad-416c-bd96-c919d4e1778f.a1d19137-13d2-4082-8f37-d131385fcc15?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/crown-trick/9NGCPXQG3NLZ" }, { "gameTitle": "Crusader Kings III", @@ -921,7 +976,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/crusader-kings-iii/9MZ8RZSD0NFQ", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.30214.13879075332331019.da1cf290-ab60-45cb-891e-71702235fa65.f0c38059-800f-4c03-ba16-7594f08ea6a4?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.61473.13879075332331019.da1cf290-ab60-45cb-891e-71702235fa65.18daa26b-682e-491f-8e1c-87533a00b5b3?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.61473.13879075332331019.da1cf290-ab60-45cb-891e-71702235fa65.18daa26b-682e-491f-8e1c-87533a00b5b3?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/crusader-kings-iii/9MZ8RZSD0NFQ" }, { "gameTitle": "DC Liga dos Superpets: As Aventuras de Krypto e Ace", @@ -939,7 +995,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/dc-league-of-super-pets-the-adventures-of-krypto-a/9NP1G0T8JDMR", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.14291.13727697462687238.ee76eff3-10ea-49a9-b873-90c81b9db9f0.f9fcc017-5bf0-4d89-84be-0fabc9746dcc?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.34631.13727697462687238.ee76eff3-10ea-49a9-b873-90c81b9db9f0.1abd2a13-907a-4bb9-b31e-6bc1c9f7420f?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.34631.13727697462687238.ee76eff3-10ea-49a9-b873-90c81b9db9f0.1abd2a13-907a-4bb9-b31e-6bc1c9f7420f?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/dc-liga-dos-superpets-as-aventuras-de-krypto-e-ace/9NP1G0T8JDMR" }, { "gameTitle": "DEATHLOOP", @@ -957,7 +1014,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/deathloop/9P5Z4530318L", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.5858.14634955238674857.649b7ff9-0dfc-4951-9b65-c5d815215da6.90208516-ba3b-47a9-a130-ef94cf860f5b?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.26641.14634955238674857.649b7ff9-0dfc-4951-9b65-c5d815215da6.bacdd878-0313-4c58-9434-459afd7cf535?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.26641.14634955238674857.649b7ff9-0dfc-4951-9b65-c5d815215da6.bacdd878-0313-4c58-9434-459afd7cf535?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/deathloop/9P5Z4530318L" }, { "gameTitle": "DEEEER Simulator: Um Jogo de Veado Corriqueiro do Cotidiano", @@ -974,7 +1032,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/deeeer-simulator-your-average-everyday-deer-game/9NNBPBM2F60W", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.38917.13741589124987756.7ce40278-4e54-4838-8822-3f597ec873af.cea3e300-6115-4b9a-b1e8-20db029b012f?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.56497.13741589124987756.7ce40278-4e54-4838-8822-3f597ec873af.fbc7f58d-e125-476a-ada8-c1533d63cc67?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.56497.13741589124987756.7ce40278-4e54-4838-8822-3f597ec873af.fbc7f58d-e125-476a-ada8-c1533d63cc67?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/deeeer-simulator-um-jogo-de-veado-corriqueiro-do-c/9NNBPBM2F60W" }, { "gameTitle": "DIRT 5", @@ -992,7 +1051,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/dirt-5/9PJGM0T0827V", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.57632.14216887906907763.b5352caa-b411-460d-acb5-a427d0106d4b.6eee667c-5c9b-4fec-a070-261c100702cf?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.43063.14216887906907763.f147e9dc-f500-4358-91e8-68c6906fcc18.7a1b601c-5b4b-4b4a-a95c-28309baf099d?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.43063.14216887906907763.f147e9dc-f500-4358-91e8-68c6906fcc18.7a1b601c-5b4b-4b4a-a95c-28309baf099d?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/dirt-5/9PJGM0T0827V" }, { "gameTitle": "DJMAX RESPECT V", @@ -1009,7 +1069,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/djmax-respect-v/9P544PGZXC0P", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.28299.14576235444726870.3e2b0155-ca8d-4075-bc12-04165b7144c1.54dbb62c-89d0-43d8-b39d-baef555b54ab?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.43739.14576235444726870.3e2b0155-ca8d-4075-bc12-04165b7144c1.0463db0d-2611-4b62-9622-423dfb90e56b?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.43739.14576235444726870.3e2b0155-ca8d-4075-bc12-04165b7144c1.0463db0d-2611-4b62-9622-423dfb90e56b?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/djmax-respect-v/9P544PGZXC0P" }, { "gameTitle": "DOOM", @@ -1026,7 +1087,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/doom/C3QH42WRGM3R", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.9537.66773763610413114.5c7115ed-b566-4d24-80ce-7027cb5b7c3e.26ccbdb5-174d-4f5d-8e51-9fbb56b09362?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.16825.66773763610413114.5c7115ed-b566-4d24-80ce-7027cb5b7c3e.7d2fc072-886d-446e-9f37-e71d442ae729?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.16825.66773763610413114.5c7115ed-b566-4d24-80ce-7027cb5b7c3e.7d2fc072-886d-446e-9f37-e71d442ae729?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/doom/C3QH42WRGM3R" }, { "gameTitle": "DOOM (1993)", @@ -1043,7 +1105,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/doom-1993/9PLZPHBNHTMF", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.50165.14303655336501012.2beb08d9-395e-453b-b5e3-0d4ac24d9d15.3b2510cc-2384-4f0d-b261-cdaa80b16ccc?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.55563.14303655336501012.2beb08d9-395e-453b-b5e3-0d4ac24d9d15.f9a0e430-b546-45f8-85f1-1d2b90bb84d5?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.55563.14303655336501012.2beb08d9-395e-453b-b5e3-0d4ac24d9d15.f9a0e430-b546-45f8-85f1-1d2b90bb84d5?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/doom-1993/9PLZPHBNHTMF" }, { "gameTitle": "DOOM 3", @@ -1060,7 +1123,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/doom-3/9NSL68D814GC", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.60652.14361385044335696.50e1eb97-e01a-40d6-839c-7082e07b25b3.470b5116-eb1e-4467-b925-703e307c0297?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.49616.14361385044335696.d9d52dee-3885-40bf-b48d-1934a8ba4324.d811c242-92de-477f-ac23-26449e84d684?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.49616.14361385044335696.d9d52dee-3885-40bf-b48d-1934a8ba4324.d811c242-92de-477f-ac23-26449e84d684?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/doom-3/9NSL68D814GC" }, { "gameTitle": "DOOM 64", @@ -1078,7 +1142,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/doom-64/9MXND4PQLK3W", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.46055.13886780434132750.58497d0f-3220-4d2f-a7ff-96dcff27bc5f.4aac1ddb-3d94-42df-a4bb-cb2dc420c7fb?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.62661.13886780434132750.58497d0f-3220-4d2f-a7ff-96dcff27bc5f.b73dcad6-d181-4cb9-91b3-2fcc2fd53852?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.62661.13886780434132750.58497d0f-3220-4d2f-a7ff-96dcff27bc5f.b73dcad6-d181-4cb9-91b3-2fcc2fd53852?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/doom-64/9MXND4PQLK3W" }, { "gameTitle": "DOOM Eternal Standard Edition", @@ -1095,7 +1160,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/doom-eternal-standard-edition/9P5S26314HWQ", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.447.64234556958324114.f920cec9-b4fb-47f4-bbac-667ed8bb82e6.361bfcfd-dedc-4575-aa66-5a5f145a6b75?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.19006.64234556958324114.f920cec9-b4fb-47f4-bbac-667ed8bb82e6.e900b072-1d04-450b-8c81-93034fd6d39d?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.19006.64234556958324114.f920cec9-b4fb-47f4-bbac-667ed8bb82e6.e900b072-1d04-450b-8c81-93034fd6d39d?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/doom-eternal-standard-edition/9P5S26314HWQ" }, { "gameTitle": "DOOM II (Classic)", @@ -1112,7 +1178,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/doom-ii-classic/9PLT62LRF9V7", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.57570.14311014949668376.25a6b443-a817-4a82-b4ec-852ef07ef120.7bb2e6db-047f-41cd-8d76-a78b5abe499b?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.58135.14311014949668376.25a6b443-a817-4a82-b4ec-852ef07ef120.0d06fd3d-ecb0-4ca0-8f2e-39e8a66ff4cf?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.58135.14311014949668376.25a6b443-a817-4a82-b4ec-852ef07ef120.0d06fd3d-ecb0-4ca0-8f2e-39e8a66ff4cf?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/doom-ii-classic/9PLT62LRF9V7" }, { "gameTitle": "DRAGON BALL FIGHTERZ", @@ -1129,7 +1196,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/dragon-ball-fighterz/BZRK5C951KK7", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.53484.63836873768130262.f1f140d8-4fff-49c3-b318-36fca1cd7343.9bf0edf7-3a14-43bb-8d05-f53de189ece1?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.62697.63836873768130262.f1f140d8-4fff-49c3-b318-36fca1cd7343.72c15fe8-8104-42f2-891b-a7aaa5d01c94?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.62697.63836873768130262.f1f140d8-4fff-49c3-b318-36fca1cd7343.72c15fe8-8104-42f2-891b-a7aaa5d01c94?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/dragon-ball-fighterz/BZRK5C951KK7" }, { "gameTitle": "DRAGON QUEST BUILDERS 2", @@ -1146,7 +1214,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/dragon-quest-builders-2/9PFD00CZJ35V", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.53352.14202829435326027.d8e6d286-7438-43e7-999e-60378c648621.3518a5b8-26cf-4ed6-9016-068170d6cc70?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.49678.14202829435326027.d8e6d286-7438-43e7-999e-60378c648621.857d322c-2a3b-4a53-8073-2798687358d0?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.49678.14202829435326027.d8e6d286-7438-43e7-999e-60378c648621.857d322c-2a3b-4a53-8073-2798687358d0?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/dragon-quest-builders-2/9PFD00CZJ35V" }, { "gameTitle": "DRAGON QUEST\u00ae XI S: Echoes of an Elusive Age\u2122 - Definitive Edition", @@ -1163,7 +1232,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/dragon-quest-xi-s-echoes-of-an-elusive-age---defin/9PBDC0XZ8TXK", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.50295.14125332336761514.8bb2a8ee-0291-4012-97d8-2e92be70a6ac.90afa133-6034-4c81-a6fd-e7767c438a72?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.16758.14125332336761514.8bb2a8ee-0291-4012-97d8-2e92be70a6ac.ff120ed5-2604-4ccc-ae66-bfbdce1112a9?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.16758.14125332336761514.8bb2a8ee-0291-4012-97d8-2e92be70a6ac.ff120ed5-2604-4ccc-ae66-bfbdce1112a9?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/dragon-quest-xi-s-echoes-of-an-elusive-age---defin/9PBDC0XZ8TXK" }, { "gameTitle": "Danganronpa 2: Goodbye Despair Anniversary Edition", @@ -1180,7 +1250,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/danganronpa-2-goodbye-despair-anniversary-edition/9N27NM3BT3ML", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.41493.13957199450175735.1b230d7b-e0f6-46ef-852d-a872d636bf5d.5fbadc7a-49da-46b7-95d1-7ce0ed4cc101?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.54728.13957199450175735.1b230d7b-e0f6-46ef-852d-a872d636bf5d.06f68b2e-19cd-4123-afb5-bdf7a6841d83?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.54728.13957199450175735.1b230d7b-e0f6-46ef-852d-a872d636bf5d.06f68b2e-19cd-4123-afb5-bdf7a6841d83?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/danganronpa-2-goodbye-despair-anniversary-edition/9N27NM3BT3ML" }, { "gameTitle": "Danganronpa V3: Killing Harmony Anniversary Edition", @@ -1197,7 +1268,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/danganronpa-v3-killing-harmony-anniversary-edition/9PMM6V93MRKW", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.25192.14291162525435146.863a4856-e937-4f6f-81c8-efcb52a1546f.68e9c078-c1a4-42e7-b8f8-4a0450cea363?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.32432.14291162525435146.863a4856-e937-4f6f-81c8-efcb52a1546f.ceab6fa9-0e52-4eb3-9890-3909f6095705?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.32432.14291162525435146.863a4856-e937-4f6f-81c8-efcb52a1546f.ceab6fa9-0e52-4eb3-9890-3909f6095705?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/danganronpa-v3-killing-harmony-anniversary-edition/9PMM6V93MRKW" }, { "gameTitle": "Danganronpa: Trigger Happy Havoc Anniversary Edition", @@ -1214,7 +1286,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/danganronpa-trigger-happy-havoc-anniversary-editio/9N07T7TGP6JG", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.15823.13926025773515961.65bfebc1-45c3-4c37-966f-35fa549dd9ce.6a2914c5-b1d3-4fa0-a102-91fa7ffb6445?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.64573.13926025773515961.65bfebc1-45c3-4c37-966f-35fa549dd9ce.f60569b4-8d5f-4885-8e8c-a6a7e3a259e8?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.64573.13926025773515961.65bfebc1-45c3-4c37-966f-35fa549dd9ce.f60569b4-8d5f-4885-8e8c-a6a7e3a259e8?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/danganronpa-trigger-happy-havoc-anniversary-editio/9N07T7TGP6JG" }, { "gameTitle": "DayZ", @@ -1232,7 +1305,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/dayz/BSR9NLHVF1KL", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.47889.69886306496288395.9ec42146-6037-4440-b5c7-3a44e5213cc3.633ff3eb-8f2a-4567-ac38-ab688a819736?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.25654.69886306496288395.9ec42146-6037-4440-b5c7-3a44e5213cc3.b6ce47f8-80fe-4ea3-8d04-2cfa13905bca?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.25654.69886306496288395.9ec42146-6037-4440-b5c7-3a44e5213cc3.b6ce47f8-80fe-4ea3-8d04-2cfa13905bca?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/dayz/BSR9NLHVF1KL" }, { "gameTitle": "Dead Cells", @@ -1250,7 +1324,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/dead-cells/BQSCNS1T8PHQ", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.28912.13719691835186674.79361d33-7a18-4554-8a50-66b60d3712e6.c6a6a941-82c2-43b3-ba3e-c53428df00a6?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.40300.13719691835186674.79361d33-7a18-4554-8a50-66b60d3712e6.d7bd4952-930d-4f5e-863b-67bb13f5199d?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.40300.13719691835186674.79361d33-7a18-4554-8a50-66b60d3712e6.d7bd4952-930d-4f5e-863b-67bb13f5199d?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/dead-cells/BQSCNS1T8PHQ" }, { "gameTitle": "Dead Space (2008)", @@ -1267,7 +1342,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/dead-space-2008/BRJLJ6RPLQTJ", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.9607.69768431406041041.e1386476-b377-413b-9457-1f5559dbb168.345050eb-2861-4fc1-9bdb-e7dcc7965eea?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.19172.69768431406041041.e1386476-b377-413b-9457-1f5559dbb168.e1b07f40-7e45-4cd3-bc9b-5a8ce23b2995?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.19172.69768431406041041.e1386476-b377-413b-9457-1f5559dbb168.e1b07f40-7e45-4cd3-bc9b-5a8ce23b2995?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/dead-space-2008/BRJLJ6RPLQTJ" }, { "gameTitle": "Dead by Daylight", @@ -1285,7 +1361,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/dead-by-daylight/C0N22P73QZ60", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.51458.64366672042187759.733004ed-c696-44cf-98cc-30eddf2375a8.33981a4c-a34b-4492-b81f-8695c017496b?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.13651.64366672042187759.733004ed-c696-44cf-98cc-30eddf2375a8.6bdb69ed-d0ef-4157-b2df-7ea97d3b1c4a?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.13651.64366672042187759.733004ed-c696-44cf-98cc-30eddf2375a8.6bdb69ed-d0ef-4157-b2df-7ea97d3b1c4a?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/dead-by-daylight/C0N22P73QZ60" }, { "gameTitle": "Death's Door [Xbox]", @@ -1302,7 +1379,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/death's-door-%5Bxbox%5D/9NDZ7NXFF622", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.46691.13605204887272793.456e749a-524b-4372-bb98-1e7f5fac0947.55c39ef5-1120-4c74-a37d-79ee51e2e5cb?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.50661.13605204887272793.456e749a-524b-4372-bb98-1e7f5fac0947.7d789bd8-b026-4a71-90a6-8907f81bec8f?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.50661.13605204887272793.456e749a-524b-4372-bb98-1e7f5fac0947.7d789bd8-b026-4a71-90a6-8907f81bec8f?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/death's-door-[xbox]/9NDZ7NXFF622" }, { "gameTitle": "Deep Rock Galactic", @@ -1319,7 +1397,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/deep-rock-galactic/9NHFVWX1V7QJ", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.49248.13626568325427111.ffcf66bb-5b9a-4ac5-8d67-8ba8f37e12a9.6b66bb30-355f-43ac-aab3-1256b15578c1?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.46973.13626568325427111.ffcf66bb-5b9a-4ac5-8d67-8ba8f37e12a9.807da6ce-caac-485b-8b45-7441326873e2?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.46973.13626568325427111.ffcf66bb-5b9a-4ac5-8d67-8ba8f37e12a9.807da6ce-caac-485b-8b45-7441326873e2?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/deep-rock-galactic/9NHFVWX1V7QJ" }, { "gameTitle": "Descenders", @@ -1337,7 +1416,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/descenders/C37XBX7DCBZ0", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.22806.65934155925401073.332e7c23-85a6-43b3-a586-2f915e27a737.f779bef0-3997-4eba-94f0-7b88eb3a74b4?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.28922.65934155925401073.cdde9208-c05c-4015-852b-3c48d95ed87b.ef83fe76-7f8b-4be5-9520-14df3444ffe2?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.28922.65934155925401073.cdde9208-c05c-4015-852b-3c48d95ed87b.ef83fe76-7f8b-4be5-9520-14df3444ffe2?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/descenders/C37XBX7DCBZ0" }, { "gameTitle": "Despot's Game", @@ -1355,7 +1435,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/despot's-game/9P5ZDVMCJMFD", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.54530.14634731171917513.ee44ea98-341d-42e8-b67a-c2a4254a08a0.3a8876e7-694c-40d5-8efc-0264051414e8?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.13399.14634731171917513.ee44ea98-341d-42e8-b67a-c2a4254a08a0.4239454b-8c5a-4424-b410-2039ca63a84c?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.13399.14634731171917513.ee44ea98-341d-42e8-b67a-c2a4254a08a0.4239454b-8c5a-4424-b410-2039ca63a84c?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/despot's-game/9P5ZDVMCJMFD" }, { "gameTitle": "Destroy All Humans!", @@ -1372,7 +1453,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/destroy-all-humans/C2GMBPMTHDDK", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.24055.65473857825187654.ebbe44de-afda-462d-a514-ec44f41ee0aa.811f648d-1bf8-4b89-bb26-f7c413b42cd2?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.13114.65473857825187654.ebbe44de-afda-462d-a514-ec44f41ee0aa.5c5ab897-d46d-4ee5-99ef-b0fa7ea16b5a?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.13114.65473857825187654.ebbe44de-afda-462d-a514-ec44f41ee0aa.5c5ab897-d46d-4ee5-99ef-b0fa7ea16b5a?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/destroy-all-humans/C2GMBPMTHDDK" }, { "gameTitle": "Dicey Dungeons", @@ -1390,7 +1472,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/dicey-dungeons/9PC4C9NLP3ZD", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.27476.14176621031001937.302a4c64-8f4d-435d-8b6d-fcd963ff70e6.59fb0946-5c13-432a-9412-eb3814a2f376?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.9181.14176621031001937.302a4c64-8f4d-435d-8b6d-fcd963ff70e6.54c59da3-1a2f-4a01-9c28-55eb2436f75b?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.9181.14176621031001937.302a4c64-8f4d-435d-8b6d-fcd963ff70e6.54c59da3-1a2f-4a01-9c28-55eb2436f75b?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/dicey-dungeons/9PC4C9NLP3ZD" }, { "gameTitle": "Disc Room", @@ -1407,7 +1490,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/disc-room/9PK5G9HBH6NH", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.9672.14269183666889184.e7870fdb-6f27-4590-86e7-17bc5ea2e4f6.e86925a8-1747-4813-a958-cf37a4277380?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.18149.14269183666889184.e7870fdb-6f27-4590-86e7-17bc5ea2e4f6.0f5379dd-2d0b-4d1d-88f5-d4f77257ecf2?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.18149.14269183666889184.e7870fdb-6f27-4590-86e7-17bc5ea2e4f6.0f5379dd-2d0b-4d1d-88f5-d4f77257ecf2?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/disc-room/9PK5G9HBH6NH" }, { "gameTitle": "Dishonored 2", @@ -1424,7 +1508,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/dishonored-2/BSZM480TSWGP", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.10911.70043444627144466.07c9aa2e-cabd-4198-941b-534a009f5e9b.cf528c6d-d4d8-4c06-ab21-dafe846ff6ac?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.26992.70043444627144466.07c9aa2e-cabd-4198-941b-534a009f5e9b.f287ebaa-4d8e-465e-83d0-be5eaeb48869?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.26992.70043444627144466.07c9aa2e-cabd-4198-941b-534a009f5e9b.f287ebaa-4d8e-465e-83d0-be5eaeb48869?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/dishonored-2/BSZM480TSWGP" }, { "gameTitle": "Dishonored\u00ae Definitive Edition", @@ -1441,7 +1526,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/dishonored-definitive-edition/C299QVC2BSJF", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.59694.65371894126242138.81c958b9-c96e-47c6-81fa-93c549ea1a80.2a213c60-376c-4924-add8-4429c6ef6357?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.62889.65371894126242138.81c958b9-c96e-47c6-81fa-93c549ea1a80.cfca16ac-2517-4803-8038-67afcf2f5c84?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.62889.65371894126242138.81c958b9-c96e-47c6-81fa-93c549ea1a80.cfca16ac-2517-4803-8038-67afcf2f5c84?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/dishonored-definitive-edition/C299QVC2BSJF" }, { "gameTitle": "Dishonored\u00ae: Death of the Outsider\u2122", @@ -1458,7 +1544,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/dishonored-death-of-the-outsider/C5F2XDQPPJKZ", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.45510.67180938922431908.a2c2d9ea-42a1-4ddc-bf74-8b91562769cf.29da272d-e2a1-4934-b9e9-563227373143?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.32468.67180938922431908.a2c2d9ea-42a1-4ddc-bf74-8b91562769cf.3188aa6f-4a83-4577-8fcd-7dc2e6fbdc58?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.32468.67180938922431908.a2c2d9ea-42a1-4ddc-bf74-8b91562769cf.3188aa6f-4a83-4577-8fcd-7dc2e6fbdc58?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/dishonored-death-of-the-outsider/C5F2XDQPPJKZ" }, { "gameTitle": "Disney Dreamlight Valley", @@ -1476,7 +1563,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/disney-dreamlight-valley/9NSF0BGH8D86", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.62890.14365104417622257.42e17a74-81d1-4e35-8c38-a935ba30ef21.80948ce2-63b2-49df-9e97-4ab247b81f10?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.55487.14365104417622257.42e17a74-81d1-4e35-8c38-a935ba30ef21.539426cb-c927-4051-88ef-dcbc2f931108?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.55487.14365104417622257.42e17a74-81d1-4e35-8c38-a935ba30ef21.539426cb-c927-4051-88ef-dcbc2f931108?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/disney-dreamlight-valley/9NSF0BGH8D86" }, { "gameTitle": "Disneyland Adventures", @@ -1493,7 +1581,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/disneyland-adventures/9N6Z8DQXSQWH", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.38755.14005003576279990.0e4e6d67-22da-40e5-b520-630686e37930.302b7455-6387-4813-8177-5e2844e8b61f?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.50242.14005003576279990.10d0c7c3-8f62-48ea-8cca-677d7c7b92ee.03fda480-425e-4847-8cb4-0eea39387d41?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.50242.14005003576279990.10d0c7c3-8f62-48ea-8cca-677d7c7b92ee.03fda480-425e-4847-8cb4-0eea39387d41?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/disneyland-adventures/9N6Z8DQXSQWH" }, { "gameTitle": "Donut County", @@ -1511,7 +1600,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/donut-county/9N6V2181GHLM", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.60906.14011542784181932.80ac6320-df7b-4be6-9355-e9083a5d2063.06135ea0-0572-4ed3-b5a2-e0a158e3144d?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.29308.14011542784181932.80ac6320-df7b-4be6-9355-e9083a5d2063.7453474c-587b-4024-ad6d-a785d30d7fc4?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.29308.14011542784181932.80ac6320-df7b-4be6-9355-e9083a5d2063.7453474c-587b-4024-ad6d-a785d30d7fc4?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/donut-county/9N6V2181GHLM" }, { "gameTitle": "Dragon Age: Origins", @@ -1528,7 +1618,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/dragon-age-origins/BS9SX4Q6XJRF", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.25088.70226594498231256.17116041-5bab-4f35-9bd5-63b5de669a3f.3076712f-3ab7-4813-a935-b1f954d8e904?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.57159.70226594498231256.17116041-5bab-4f35-9bd5-63b5de669a3f.c2663062-0738-4072-a075-da4babd7d1c6?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.57159.70226594498231256.17116041-5bab-4f35-9bd5-63b5de669a3f.c2663062-0738-4072-a075-da4babd7d1c6?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/dragon-age-origins/BS9SX4Q6XJRF" }, { "gameTitle": "Dragon Age\u2122: Inquisition", @@ -1545,7 +1636,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/dragon-age-inquisition/C47GZZBMR5WG", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.1094.66474211586744867.e24f67e1-7195-4bf7-9758-84e7723c0673.ba5ac0c8-e5fb-42c8-a648-a81b5fe939ff?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.31941.66474211586744867.e24f67e1-7195-4bf7-9758-84e7723c0673.5da54656-795f-4c70-ab92-dfeeb3d87584?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.31941.66474211586744867.e24f67e1-7195-4bf7-9758-84e7723c0673.5da54656-795f-4c70-ab92-dfeeb3d87584?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/dragon-age-inquisition/C47GZZBMR5WG" }, { "gameTitle": "Dreamscaper", @@ -1563,7 +1655,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/dreamscaper/9NB7FZ2GV5N1", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.64147.13522425449027354.d30e2029-af7b-42b5-9597-24dab387b2b5.5f9b306d-bb7b-4f07-99c2-c27d94d455e0?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.3404.13522425449027354.d30e2029-af7b-42b5-9597-24dab387b2b5.df171986-ad35-4dd9-8c9d-ae969f9d0bca?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.3404.13522425449027354.d30e2029-af7b-42b5-9597-24dab387b2b5.df171986-ad35-4dd9-8c9d-ae969f9d0bca?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/dreamscaper/9NB7FZ2GV5N1" }, { "gameTitle": "Edge of Eternity", @@ -1581,7 +1674,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/edge-of-eternity/9P934697Z4W4", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.16694.14080357279144129.c9fd9598-f310-4593-b38e-50d9b36a791b.62fb47a3-8d76-4ba5-9ff0-ac8098649cf6?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.7456.14080357279144129.c9fd9598-f310-4593-b38e-50d9b36a791b.faef1c9f-3525-4837-af07-734ee1d320fc?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.7456.14080357279144129.c9fd9598-f310-4593-b38e-50d9b36a791b.faef1c9f-3525-4837-af07-734ee1d320fc?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/edge-of-eternity/9P934697Z4W4" }, { "gameTitle": "Eiyuden Chronicle: Rising", @@ -1598,7 +1692,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/eiyuden-chronicle-rising/9NMD6VV08WGF", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.9020.13694306682751994.5bc2fdaa-7629-4489-9dcb-d5aacee2da36.ef9b1a83-12c4-429e-87b9-6fed1ad5f431?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.29866.13694306682751994.5bc2fdaa-7629-4489-9dcb-d5aacee2da36.e9703b5f-50a3-4e55-84b3-5dece2758fce?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.29866.13694306682751994.5bc2fdaa-7629-4489-9dcb-d5aacee2da36.e9703b5f-50a3-4e55-84b3-5dece2758fce?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/eiyuden-chronicle-rising/9NMD6VV08WGF" }, { "gameTitle": "Embr", @@ -1616,7 +1711,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/embr/9P9XS9D0LBPV", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.10405.14134157626658703.ad01f8b0-d5c5-49de-b137-27e100034590.7e8ae4c0-4206-430c-90d0-8db4c8edb68f?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.17698.14134157626658703.ad01f8b0-d5c5-49de-b137-27e100034590.8f3f9e8f-6f4b-4852-a61d-d99afbdee520?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.17698.14134157626658703.ad01f8b0-d5c5-49de-b137-27e100034590.8f3f9e8f-6f4b-4852-a61d-d99afbdee520?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/embr/9P9XS9D0LBPV" }, { "gameTitle": "Empire of Sin", @@ -1634,7 +1730,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/empire-of-sin/9NN7NF8N5Q5C", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.64796.13747976611115190.63973483-7da5-48ba-bb81-accb70ec340f.354443e8-3b01-47c1-a33e-ac487f8a8cc1?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.58631.13747976611115190.63973483-7da5-48ba-bb81-accb70ec340f.2dca3670-5de7-4cd5-b7e1-8366a382d658?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.58631.13747976611115190.63973483-7da5-48ba-bb81-accb70ec340f.2dca3670-5de7-4cd5-b7e1-8366a382d658?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/empire-of-sin/9NN7NF8N5Q5C" }, { "gameTitle": "Escape Academy", @@ -1652,7 +1749,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/escape-academy/9P3NT9H51RMR", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.27583.14539026038241714.21a192f1-dd13-4371-b3d3-bd3b46c94f1c.e22769c9-5f6a-4b3b-86db-23b45314350c?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.31067.14539026038241714.286d01b5-ac41-42cd-bdbf-9a9417a8ea9e.8129cf30-417e-40c8-97b0-8bd019d86750?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.31067.14539026038241714.286d01b5-ac41-42cd-bdbf-9a9417a8ea9e.8129cf30-417e-40c8-97b0-8bd019d86750?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/escape-academy/9P3NT9H51RMR" }, { "gameTitle": "Evil Genius 2: World Domination", @@ -1669,7 +1767,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/evil-genius-2-world-domination/9NPC5398SCQ6", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.56773.13725970033936449.25aa6307-fa1b-4241-9ec3-abc63be55bac.e27edbe4-2824-44ff-8139-77965b9581a9?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.54106.13725970033936449.25aa6307-fa1b-4241-9ec3-abc63be55bac.e3f4d345-5a07-4993-912c-0c5f901696bd?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.54106.13725970033936449.25aa6307-fa1b-4241-9ec3-abc63be55bac.e3f4d345-5a07-4993-912c-0c5f901696bd?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/evil-genius-2-world-domination/9NPC5398SCQ6" }, { "gameTitle": "Eville", @@ -1687,7 +1786,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/eville/9PC12991NZ5N", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.31296.14112988465880137.944f8dc0-63f1-4f15-96aa-cab88a628053.65e7f8f4-3625-4a09-8aa7-fead27a7806f?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.19828.14112988465880137.944f8dc0-63f1-4f15-96aa-cab88a628053.3baaa95c-7788-4c73-aef5-b1cd1bd840b6?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.19828.14112988465880137.944f8dc0-63f1-4f15-96aa-cab88a628053.3baaa95c-7788-4c73-aef5-b1cd1bd840b6?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/eville/9PC12991NZ5N" }, { "gameTitle": "Exo One", @@ -1705,7 +1805,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/exo-one/9NJG36MFVR1L", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.8995.13681719632931019.3fadfa10-4988-4e93-8972-339883dea36a.c9fad8d9-ff5b-4d8a-bbfe-dce0089e073a?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.55217.13681719632931019.3fadfa10-4988-4e93-8972-339883dea36a.9476cad4-4500-4000-b639-0213f5000d36?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.55217.13681719632931019.3fadfa10-4988-4e93-8972-339883dea36a.9476cad4-4500-4000-b639-0213f5000d36?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/exo-one/9NJG36MFVR1L" }, { "gameTitle": "F1\u00ae 2021", @@ -1723,7 +1824,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/f1-2021/9N6J02VPG635", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.37657.14013748203655664.db785774-47f3-45ce-bd9e-3b1596621222.efc40178-0102-49ea-ab22-2dd4e3fad20c?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.12136.14013748203655664.db785774-47f3-45ce-bd9e-3b1596621222.48395430-82be-4045-a174-cecbbda965e7?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.12136.14013748203655664.db785774-47f3-45ce-bd9e-3b1596621222.48395430-82be-4045-a174-cecbbda965e7?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/f1-2021/9N6J02VPG635" }, { "gameTitle": "FAR: Changing Tides", @@ -1740,7 +1842,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/far-changing-tides/9N29VZ9LRNNQ", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.47853.13955748726326945.7931fe0b-e479-493c-a5eb-ac7155d10f18.aa8c6226-657f-4c1a-a5cf-8266f83ac9f8?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.24352.13955748726326945.7931fe0b-e479-493c-a5eb-ac7155d10f18.732c24be-6c7e-48f2-a379-adf8dd0ec728?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.24352.13955748726326945.7931fe0b-e479-493c-a5eb-ac7155d10f18.732c24be-6c7e-48f2-a379-adf8dd0ec728?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/far-changing-tides/9N29VZ9LRNNQ" }, { "gameTitle": "FOR HONOR : MARCHING FIRE EDITION", @@ -1757,7 +1860,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/for-honor-marching-fire-edition/C4CBF3FHHCND", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.27398.66538969761564623.2ff1d4ba-a932-4a84-a4e7-5e3810d6d336.f36638ca-65e0-4b99-97be-f665c0ab94bd?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.31135.66538969761564623.2ff1d4ba-a932-4a84-a4e7-5e3810d6d336.ba7e9799-5dec-4d08-af90-911ffa2168fc?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.31135.66538969761564623.2ff1d4ba-a932-4a84-a4e7-5e3810d6d336.ba7e9799-5dec-4d08-af90-911ffa2168fc?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/for-honor-marching-fire-edition/C4CBF3FHHCND" }, { "gameTitle": "Fable Anniversary", @@ -1774,7 +1878,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/fable-anniversary/C2Q32JM0BPZL", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.44376.66175927222580475.7f09fde8-a46b-4c45-8584-a5e3090f8190.12d67f03-4a2b-4967-982a-9980a185e1b1?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.11896.66175927222580475.7f09fde8-a46b-4c45-8584-a5e3090f8190.58c0cf42-378d-471e-941b-cb63488c7de5?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.11896.66175927222580475.7f09fde8-a46b-4c45-8584-a5e3090f8190.58c0cf42-378d-471e-941b-cb63488c7de5?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/fable-anniversary/C2Q32JM0BPZL" }, { "gameTitle": "Fable II", @@ -1791,7 +1896,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/fable-ii/C2WKJJ9F5936", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.12706.66274487452813675.86971dec-0f03-42bb-b657-322859f064f4.5b8be489-c377-4439-a4a5-5564da9a165b?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.60848.66274487452813675.86971dec-0f03-42bb-b657-322859f064f4.bbf884e7-eb3c-4826-816f-027108f500b6?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.60848.66274487452813675.86971dec-0f03-42bb-b657-322859f064f4.bbf884e7-eb3c-4826-816f-027108f500b6?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/fable-ii/C2WKJJ9F5936" }, { "gameTitle": "Fable III", @@ -1809,7 +1915,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/fable-iii/BR46KM4D5B9L", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.49206.68952782261614407.207517f2-cff8-4d40-84e1-b44139d6e70b.77a300c7-676b-4530-ae94-7438be18bd8e?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.57973.68952782261614407.207517f2-cff8-4d40-84e1-b44139d6e70b.bf178dec-cd3e-446d-a76b-a9c9208d4680?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.57973.68952782261614407.207517f2-cff8-4d40-84e1-b44139d6e70b.bf178dec-cd3e-446d-a76b-a9c9208d4680?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/fable-iii/BR46KM4D5B9L" }, { "gameTitle": "Fae Tactics", @@ -1827,7 +1934,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/fae-tactics/9PL4HXW1H502", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.51450.14249741584182441.fad329ed-ca88-42b0-bfd3-dde8d09e0e7e.93a46ddb-0ae0-4f3a-a8a4-5d37a73292a4?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.24869.14249741584182441.fad329ed-ca88-42b0-bfd3-dde8d09e0e7e.2fa38c0b-0a87-46bb-9fdd-0c54bfb694a2?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.24869.14249741584182441.fad329ed-ca88-42b0-bfd3-dde8d09e0e7e.2fa38c0b-0a87-46bb-9fdd-0c54bfb694a2?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/fae-tactics/9PL4HXW1H502" }, { "gameTitle": "Fallout 3", @@ -1844,7 +1952,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/fallout-3/C29HQ887KH4B", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.38961.65367730044127425.992bf426-3c9a-450f-a792-7946f7138dee.98e9a605-2163-4484-8952-1d8de0909b8f?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.16997.65367730044127425.992bf426-3c9a-450f-a792-7946f7138dee.b7e225d6-9bb7-4a0d-94dc-47bde86b6693?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.16997.65367730044127425.992bf426-3c9a-450f-a792-7946f7138dee.b7e225d6-9bb7-4a0d-94dc-47bde86b6693?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/fallout-3/C29HQ887KH4B" }, { "gameTitle": "Fallout 4", @@ -1861,7 +1970,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/fallout-4/C3KLDKZBHNCZ", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.54862.66091604408099736.4cc75ea1-c6a0-40ec-b7f9-7fdb8da581b2.5e94fe90-d2f9-4757-8c2c-b97408d79876?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.31046.66091604408099736.4cc75ea1-c6a0-40ec-b7f9-7fdb8da581b2.a57d4b8c-5413-4da4-ac55-d22e67c07969?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.31046.66091604408099736.4cc75ea1-c6a0-40ec-b7f9-7fdb8da581b2.a57d4b8c-5413-4da4-ac55-d22e67c07969?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/fallout-4/C3KLDKZBHNCZ" }, { "gameTitle": "Fallout 76", @@ -1878,7 +1988,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/fallout-76/BS6WJ2L56B10", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.39914.70143269474194625.d1eeac92-8fe9-443b-af8f-40450ce537a2.86eb483a-50d8-4b2b-94e1-ecf09ce5e590?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.58496.70143269474194625.d1eeac92-8fe9-443b-af8f-40450ce537a2.03fe8575-ee40-4cef-98cb-bb6896afa3b1?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.58496.70143269474194625.d1eeac92-8fe9-443b-af8f-40450ce537a2.03fe8575-ee40-4cef-98cb-bb6896afa3b1?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/fallout-76/BS6WJ2L56B10" }, { "gameTitle": "Fallout: New Vegas", @@ -1896,7 +2007,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/fallout-new-vegas/BX3JNK07Z6QK", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.54716.63413868670389858.a909f79f-bf9a-495a-9565-6895806c3525.3405026a-8882-4e5a-8f49-41ccbc9686a3?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.48990.63413868670389858.a909f79f-bf9a-495a-9565-6895806c3525.64c38aa8-fafc-4198-a7ec-629b5054e84e?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.48990.63413868670389858.a909f79f-bf9a-495a-9565-6895806c3525.64c38aa8-fafc-4198-a7ec-629b5054e84e?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/fallout-new-vegas/BX3JNK07Z6QK" }, { "gameTitle": "Far Cry\u00ae 5", @@ -1913,7 +2025,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/far-cry-5/BR7X7MVBBQKM", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.48705.69582963086497758.e1cff2e3-ddf1-42bf-930d-f380ad63f100.1eb992fd-461c-4edd-9e5e-b3fbb7a41044?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.22845.69582963086497758.e1cff2e3-ddf1-42bf-930d-f380ad63f100.1ef04059-9768-4999-b495-f48a52290ae9?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.22845.69582963086497758.e1cff2e3-ddf1-42bf-930d-f380ad63f100.1ef04059-9768-4999-b495-f48a52290ae9?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/far-cry-5/BR7X7MVBBQKM" }, { "gameTitle": "Farming Simulator 22", @@ -1930,7 +2043,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/farming-simulator-22/9P6SRW1HVW9K", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.44229.14617846210383148.2692112c-5cf0-4f44-8fcf-72e45e75380c.cb519bf7-8b19-4e28-bd15-994c42ee2b26?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.35136.14617846210383148.f5d1d30e-892f-4959-a5b8-f2ef506cf0ae.d40fe9db-42d7-4434-83be-bcbb42f685c3?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.35136.14617846210383148.f5d1d30e-892f-4959-a5b8-f2ef506cf0ae.d40fe9db-42d7-4434-83be-bcbb42f685c3?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/farming-simulator-22/9P6SRW1HVW9K" }, { "gameTitle": "Firewatch", @@ -1947,7 +2061,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/firewatch/BQQKG9H2STC0", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.40478.68688977722932617.c18986e0-354d-49e5-a689-33d52a7432cb.15d49e14-f3c9-4949-b807-62a02521442b?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.14501.68688977722932617.c18986e0-354d-49e5-a689-33d52a7432cb.4324e613-281f-4948-bd74-d17321615130?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.14501.68688977722932617.c18986e0-354d-49e5-a689-33d52a7432cb.4324e613-281f-4948-bd74-d17321615130?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/firewatch/BQQKG9H2STC0" }, { "gameTitle": "Floppy Knights", @@ -1965,7 +2080,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/floppy-knights/9NLM4TTHCWSH", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.30829.13705007807700068.f8418398-1ad9-4e90-bf4e-8ce6aabbfbfa.df128ff9-1246-46b2-bbed-8e4c98445275?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.15574.13705007807700068.f8418398-1ad9-4e90-bf4e-8ce6aabbfbfa.edecefb3-678b-4d2d-8269-b2db60216c37?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.15574.13705007807700068.f8418398-1ad9-4e90-bf4e-8ce6aabbfbfa.edecefb3-678b-4d2d-8269-b2db60216c37?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/floppy-knights/9NLM4TTHCWSH" }, { "gameTitle": "Forager", @@ -1983,7 +2099,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/forager/9MV2S7Q5PHSW", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.54794.13796714672158376.aa1c19be-0d47-46ac-9fb3-74c8d6d9fdf8.aa68b619-7475-49d7-9f98-ea5020f22958?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.39862.13796714672158376.aa1c19be-0d47-46ac-9fb3-74c8d6d9fdf8.450a5deb-8adb-4bb1-84ef-0af38f56c8ce?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.39862.13796714672158376.aa1c19be-0d47-46ac-9fb3-74c8d6d9fdf8.450a5deb-8adb-4bb1-84ef-0af38f56c8ce?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/forager/9MV2S7Q5PHSW" }, { "gameTitle": "Fortnite", @@ -2001,7 +2118,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/fortnite/BT5P2X999VH2", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.59377.70702278257994163.852f160a-a678-4fa5-a9e3-fdeffeb7e7dd.44c6f6d7-4bb2-42ba-be35-984b29425077?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.39022.70702278257994163.852f160a-a678-4fa5-a9e3-fdeffeb7e7dd.71fff695-ed20-459a-a44d-2ce06684e9df?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.39022.70702278257994163.852f160a-a678-4fa5-a9e3-fdeffeb7e7dd.71fff695-ed20-459a-a44d-2ce06684e9df?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/fortnite/BT5P2X999VH2" }, { "gameTitle": "Forza Horizon 4 Edi\u00e7\u00e3o Padr\u00e3o", @@ -2018,7 +2136,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/forza-horizon-4-standard-edition/9PNJXVCVWD4K", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.2050.14343301090572358.2000000000007864205.da7d6a7f-5e66-439b-82e9-e5c23f17f739?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.51635.14343301090572358.2000000000007864230.cb90c37a-b1b9-44bc-9387-cf6f398e06cd?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.51635.14343301090572358.2000000000007864230.cb90c37a-b1b9-44bc-9387-cf6f398e06cd?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/forza-horizon-4-edi%C3%A7%C3%A3o-padr%C3%A3o/9PNJXVCVWD4K" }, { "gameTitle": "Forza Horizon 5 Edi\u00e7\u00e3o Padr\u00e3o", @@ -2035,7 +2154,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/forza-horizon-5-standard-edition/9NKX70BBCDRN", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.18975.13718773309227929.bebdcc0e-1ed5-4778-8732-f4ef65a2f445.125d6b3b-492f-4e5f-8037-7ade230c8224?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.33953.13718773309227929.bebdcc0e-1ed5-4778-8732-f4ef65a2f445.9428b75f-2c08-4e70-9f95-281741b15341?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.33953.13718773309227929.bebdcc0e-1ed5-4778-8732-f4ef65a2f445.9428b75f-2c08-4e70-9f95-281741b15341?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/forza-horizon-5-edi%C3%A7%C3%A3o-padr%C3%A3o/9NKX70BBCDRN" }, { "gameTitle": "Frostpunk: Console Edition", @@ -2053,7 +2173,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/frostpunk-console-edition/9NP539LHJD8S", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.46316.13729671074412623.f72f7df4-e873-4e52-a4dc-651d0b3e8b0f.1625980c-0794-44fa-88d0-e00b37773b21?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.14473.13729671074412623.3c1853e8-a2eb-4ccb-b708-021e412d015c.2700e93a-8d11-4611-be92-9ef46597b880?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.14473.13729671074412623.3c1853e8-a2eb-4ccb-b708-021e412d015c.2700e93a-8d11-4611-be92-9ef46597b880?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/frostpunk-console-edition/9NP539LHJD8S" }, { "gameTitle": "Fuga: Melodies of Steel", @@ -2070,7 +2191,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/fuga-melodies-of-steel/9NLX3GWW0HF1", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.41808.13703325884761588.f33ea47b-9cce-415c-a23e-066944821a2c.298c2f09-26eb-4529-a16c-e7b3c50c3def?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.37253.13703325884761588.f33ea47b-9cce-415c-a23e-066944821a2c.9f3dca0f-edf2-44a4-8c15-2266f7a59bc7?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.37253.13703325884761588.f33ea47b-9cce-415c-a23e-066944821a2c.9f3dca0f-edf2-44a4-8c15-2266f7a59bc7?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/fuga-melodies-of-steel/9NLX3GWW0HF1" }, { "gameTitle": "Fuzion Frenzy\u00ae", @@ -2087,7 +2209,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/fuzion-frenzy/C2P985H1H42H", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.29460.65553901453292980.5f73bae7-0b93-4345-bf12-87df77ec6f05.2e554579-0c20-4b04-89a5-e6cbce60d4a0?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.6987.65553901453292980.5f73bae7-0b93-4345-bf12-87df77ec6f05.67f3135c-8a07-43e3-9a1f-461408bddaf9?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.6987.65553901453292980.5f73bae7-0b93-4345-bf12-87df77ec6f05.67f3135c-8a07-43e3-9a1f-461408bddaf9?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/fuzion-frenzy/C2P985H1H42H" }, { "gameTitle": "Gang Beasts", @@ -2104,7 +2227,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/gang-beasts/BPQZT43FWD49", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.27333.68150164172276526.ddc374d7-ef5e-43b9-940a-bbc04440bb33.fa908ac2-c1a8-4d1b-9652-c977565a8111?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.32163.68150164172276526.ddc374d7-ef5e-43b9-940a-bbc04440bb33.deaff9b9-d8af-4e35-9f45-75951fe60524?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.32163.68150164172276526.ddc374d7-ef5e-43b9-940a-bbc04440bb33.deaff9b9-d8af-4e35-9f45-75951fe60524?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/gang-beasts/BPQZT43FWD49" }, { "gameTitle": "Garden Story", @@ -2122,7 +2246,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/garden-story/9PP09MJRH2XD", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.59861.14334501706636147.97df104f-715b-4347-b111-98fa1cbd5f7c.c9ebf3de-6630-46e2-a5ba-612131822246?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.37921.14334501706636147.97df104f-715b-4347-b111-98fa1cbd5f7c.0e810e17-6a1b-4890-ac7a-f3e1ad8213fb?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.37921.14334501706636147.97df104f-715b-4347-b111-98fa1cbd5f7c.0e810e17-6a1b-4890-ac7a-f3e1ad8213fb?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/garden-story/9PP09MJRH2XD" }, { "gameTitle": "Edi\u00e7\u00e3o Gears 5 - Game of the Year", @@ -2139,7 +2264,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/gears-5-game-of-the-year-edition/9P4KMR76PLLQ", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.9672.14591801423393397.e1044226-28d7-42f6-a357-7102f7d1a4b3.5554c17b-3189-46a1-93fb-2005d1d08e7e?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.26484.14591801423393397.e1044226-28d7-42f6-a357-7102f7d1a4b3.8adca5d4-cdf8-44b2-b453-98e567ad0264?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.26484.14591801423393397.e1044226-28d7-42f6-a357-7102f7d1a4b3.8adca5d4-cdf8-44b2-b453-98e567ad0264?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/edi%C3%A7%C3%A3o-gears-5---game-of-the-year/9P4KMR76PLLQ" }, { "gameTitle": "Gears Tactics", @@ -2156,7 +2282,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/gears-tactics/9NN3HCKW5TPC", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.2270.13750744755532010.7748d323-597f-440a-94e4-9c030198efa6.39a3aebc-6a07-4d8a-83e3-597bd117ff7b?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.14840.13750744755532010.7748d323-597f-440a-94e4-9c030198efa6.35089704-1d88-49c8-9cb6-cf15ce10a9a5?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.14840.13750744755532010.7748d323-597f-440a-94e4-9c030198efa6.35089704-1d88-49c8-9cb6-cf15ce10a9a5?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/gears-tactics/9NN3HCKW5TPC" }, { "gameTitle": "Gears of War 2", @@ -2173,7 +2300,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/gears-of-war-2/C1SDBNRFXT1D", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.22422.65595136073047161.857e51a5-2b52-4c0e-8ac2-92b6b4609fc2.575238f4-dafa-47d8-a0b9-0ab665f39566?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.25609.65595136073047161.857e51a5-2b52-4c0e-8ac2-92b6b4609fc2.6df5069b-fe9a-436c-875c-9e14f0d754a1?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.25609.65595136073047161.857e51a5-2b52-4c0e-8ac2-92b6b4609fc2.6df5069b-fe9a-436c-875c-9e14f0d754a1?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/gears-of-war-2/C1SDBNRFXT1D" }, { "gameTitle": "Gears of War 3", @@ -2190,7 +2318,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/gears-of-war-3/BPKDQSSFQ9WV", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.17664.68607194681373551.b4c09a44-be36-42d6-96c5-4a33b566becd.f0735af8-acef-4b7e-b40c-d0d2b622dd37?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.52315.68607194681373551.b4c09a44-be36-42d6-96c5-4a33b566becd.9199c63b-06f1-41b5-8118-c1d2373ee86a?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.52315.68607194681373551.b4c09a44-be36-42d6-96c5-4a33b566becd.9199c63b-06f1-41b5-8118-c1d2373ee86a?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/gears-of-war-3/BPKDQSSFQ9WV" }, { "gameTitle": "Gears of War 4", @@ -2207,7 +2336,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/gears-of-war-4/9NBLGGH4PBBM", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.27107.13510798887356280.e9581154-ba55-457f-9b5f-4285b6036ba9.852cd1b9-b6db-430f-a640-b02d32c72c05?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.6102.13510798887356280.9398b0dd-2ecf-4973-9380-576d1d374a25.92d12017-af9a-41ae-b97a-8213710cdb49?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.6102.13510798887356280.9398b0dd-2ecf-4973-9380-576d1d374a25.92d12017-af9a-41ae-b97a-8213710cdb49?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/gears-of-war-4/9NBLGGH4PBBM" }, { "gameTitle": "Gears of War: Judgment", @@ -2224,7 +2354,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/gears-of-war-judgment/BSHMMGRP84N4", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.44244.70323071690757883.aa344172-c923-4b38-a055-9ce9a093bc86.0f5d2994-3b99-4968-9b8b-ccdff7d7612f?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.1787.70323071690757883.aa344172-c923-4b38-a055-9ce9a093bc86.4728b066-afb5-4b2a-bdc2-d91341663e15?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.1787.70323071690757883.aa344172-c923-4b38-a055-9ce9a093bc86.4728b066-afb5-4b2a-bdc2-d91341663e15?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/gears-of-war-judgment/BSHMMGRP84N4" }, { "gameTitle": "Gears of War: Ultimate Edition", @@ -2241,7 +2372,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/gears-of-war-ultimate-edition/BQT21VXFS52F", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.30935.68785176255228170.152a1029-d0c3-4d27-a42d-ecccb32aa4ca.dc750da7-3cda-4a73-9705-24b6c06e820d?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.10153.68785176255228170.152a1029-d0c3-4d27-a42d-ecccb32aa4ca.12e2db46-e6be-4494-a43e-ccf2e701ed16?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.10153.68785176255228170.152a1029-d0c3-4d27-a42d-ecccb32aa4ca.12e2db46-e6be-4494-a43e-ccf2e701ed16?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/gears-of-war-ultimate-edition/BQT21VXFS52F" }, { "gameTitle": "Generation Zero\u00ae", @@ -2259,7 +2391,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/generation-zero/C20WW4W29FQ1", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.26037.65743914527603622.c1e9cb1f-651a-4556-9033-7aa1173649f4.a99f23b6-999e-464f-95d9-fd4609a6b809?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.283.65743914527603622.c1e9cb1f-651a-4556-9033-7aa1173649f4.60c2569f-7adc-4b76-81ec-d4f43935573c?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.283.65743914527603622.c1e9cb1f-651a-4556-9033-7aa1173649f4.60c2569f-7adc-4b76-81ec-d4f43935573c?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/generation-zero/C20WW4W29FQ1" }, { "gameTitle": "Genesis Noir", @@ -2277,7 +2410,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/genesis-noir/9PHK9D8CLQCG", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.47660.13844380730124915.b015e4f1-318e-475f-8d5a-24ea35c62b4c.c9ffcac7-cf41-4392-9a5c-164e93e0aa64?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.22196.13844380730124915.b015e4f1-318e-475f-8d5a-24ea35c62b4c.338f029a-10a4-4847-9a2a-ff261bd1d26b?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.22196.13844380730124915.b015e4f1-318e-475f-8d5a-24ea35c62b4c.338f029a-10a4-4847-9a2a-ff261bd1d26b?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/genesis-noir/9PHK9D8CLQCG" }, { "gameTitle": "Goat Simulator", @@ -2294,25 +2428,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/goat-simulator/BV0NM309K1TL", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.53467.70628353720390187.c5ec2284-1a6e-4ed0-a094-b54b14b8d466.186f50d1-55ce-4827-925f-6816154430d6?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.46116.70628353720390187.c5ec2284-1a6e-4ed0-a094-b54b14b8d466.f01d3b8d-41e1-42bc-b322-443ee5b1f390?h=%i&format=jpg" - }, - { - "gameTitle": "Golf With Your Friends", - "gamePublisher": "Team17", - "gameDeveloper": "Blacklight Interactive and Team17", - "gameGenres": [ - "Fam\u00edlia e crian\u00e7as", - "Esportes" - ], - "releaseDate": "19/05/2020", - "extraGameProperties": { - "isInGamePass": true, - "controllerSupport": false, - "touchControllerSupport": false - }, - "xcloudUrl": "https://www.xbox.com/%s/play/games/golf-with-your-friends/9N14G09PWG74", - "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.6387.13908316754263937.a2613d65-5012-428e-8936-df4b3295d7bd.7d2ab0ab-de55-4ed7-99d5-6b77de424f11?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.489.13908316754263937.a2613d65-5012-428e-8936-df4b3295d7bd.5fe96ab4-000b-44eb-a706-d506daa5d44b?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.46116.70628353720390187.c5ec2284-1a6e-4ed0-a094-b54b14b8d466.f01d3b8d-41e1-42bc-b322-443ee5b1f390?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/goat-simulator/BV0NM309K1TL" }, { "gameTitle": "Gorogoa", @@ -2330,7 +2447,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/gorogoa/C41M2F4NWB2S", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.11042.66945940929342019.3c8e01a6-6e60-4733-ada9-8cdf420e19fd.10801ac2-a270-44eb-ad4c-6956c2499b23?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.5340.66945940929342019.3c8e01a6-6e60-4733-ada9-8cdf420e19fd.f5345cf2-78bc-4344-a751-68e3a4359030?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.5340.66945940929342019.3c8e01a6-6e60-4733-ada9-8cdf420e19fd.f5345cf2-78bc-4344-a751-68e3a4359030?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/gorogoa/C41M2F4NWB2S" }, { "gameTitle": "Grounded", @@ -2348,7 +2466,27 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/grounded/9PJTHRNVH62H", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.36912.14280109286674604.94f3a3e8-211f-41e5-ac9c-d948b5377852.4e9bf257-12e0-4f04-9239-671818df45b0?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.27514.14280109286674604.1fb359e4-01eb-4818-b992-b225ce4869c9.c9733025-0344-4e66-aff1-ee3bcf9016a7?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.27514.14280109286674604.1fb359e4-01eb-4818-b992-b225ce4869c9.c9733025-0344-4e66-aff1-ee3bcf9016a7?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/grounded/9PJTHRNVH62H" + }, + { + "gameTitle": "Golf With Your Friends", + "gamePublisher": "Team17", + "gameDeveloper": "Blacklight Interactive and Team17", + "gameGenres": [ + "Fam\u00edlia e crian\u00e7as", + "Esportes" + ], + "releaseDate": "19/05/2020", + "extraGameProperties": { + "isInGamePass": true, + "controllerSupport": false, + "touchControllerSupport": false + }, + "xcloudUrl": "https://www.xbox.com/%s/play/games/golf-with-your-friends/9N14G09PWG74", + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.6387.13908316754263937.a2613d65-5012-428e-8936-df4b3295d7bd.7d2ab0ab-de55-4ed7-99d5-6b77de424f11?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.489.13908316754263937.a2613d65-5012-428e-8936-df4b3295d7bd.5fe96ab4-000b-44eb-a706-d506daa5d44b?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/golf-with-your-friends/9N14G09PWG74" }, { "gameTitle": "HITMAN Trilogy", @@ -2365,7 +2503,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/hitman-trilogy/9NN82NH949D5", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.10042.14144194933273826.3ced5741-3e78-4437-9d89-92e9ac9b74fc.0f724e5e-5cff-424d-9920-a7b0de11eec6?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.8424.14144194933273826.3ced5741-3e78-4437-9d89-92e9ac9b74fc.731d758a-5b00-4082-887f-693b179a41b2?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.8424.14144194933273826.3ced5741-3e78-4437-9d89-92e9ac9b74fc.731d758a-5b00-4082-887f-693b179a41b2?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/hitman-trilogy/9NN82NH949D5" }, { "gameTitle": "Halo 5: Guardians", @@ -2382,7 +2521,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/halo-5-guardians/BRRC2BP0G9P0", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.64118.69279545232152045.f1a4a87c-fcc9-4b7c-a620-f6c56eb2d5ad.37725d25-3e41-41e7-a2ce-6b0f9994ef5c?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.50236.69279545232152045.f1a4a87c-fcc9-4b7c-a620-f6c56eb2d5ad.f0eeb1d4-a30c-4a21-8bcb-46ed84669b5c?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.50236.69279545232152045.f1a4a87c-fcc9-4b7c-a620-f6c56eb2d5ad.f0eeb1d4-a30c-4a21-8bcb-46ed84669b5c?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/halo-5-guardians/BRRC2BP0G9P0" }, { "gameTitle": "Halo Infinite (Campanha)", @@ -2399,7 +2539,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/halo-infinite-campaign/9NP1P1WFS0LB", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.56579.13727851868390641.c9cc5f66-aff8-406c-af6b-440838730be0.0dee39b3-efb2-4425-8f1f-087c111ff9b2?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.50670.13727851868390641.c9cc5f66-aff8-406c-af6b-440838730be0.d205e025-5444-4eb1-ae46-571ae6895928?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.50670.13727851868390641.c9cc5f66-aff8-406c-af6b-440838730be0.d205e025-5444-4eb1-ae46-571ae6895928?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/halo-infinite-campanha/9NP1P1WFS0LB" }, { "gameTitle": "Halo Wars 2: Standard Edition", @@ -2416,7 +2557,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/halo-wars-2-standard-edition/C42KCJCLX6MX", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.6988.66922732424733865.effc282c-0a95-45c2-8069-86e7e083b3aa.d9a002b9-654e-406f-bce9-4d9de652143a?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.25463.66922732424733865.effc282c-0a95-45c2-8069-86e7e083b3aa.13ca4a16-2390-4552-ac35-49ef77416cb0?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.25463.66922732424733865.effc282c-0a95-45c2-8069-86e7e083b3aa.13ca4a16-2390-4552-ac35-49ef77416cb0?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/halo-wars-2-standard-edition/C42KCJCLX6MX" }, { "gameTitle": "Halo Wars: Definitive Edition", @@ -2434,7 +2576,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/halo-wars-definitive-edition/BPRPQSKXTD1L", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.58465.68131417927341023.6f4f8f73-402d-42d7-8fff-a37b68438b32.76e8810a-db0d-4b39-9e12-5fd71c6c6ee6?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.41418.68131417927341023.6f4f8f73-402d-42d7-8fff-a37b68438b32.83d52991-7017-4eb8-a444-f551fe8e9be7?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.41418.68131417927341023.6f4f8f73-402d-42d7-8fff-a37b68438b32.83d52991-7017-4eb8-a444-f551fe8e9be7?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/halo-wars-definitive-edition/BPRPQSKXTD1L" }, { "gameTitle": "Halo: Spartan Assault", @@ -2452,7 +2595,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/halo-spartan-assault/BV0K9LMLQ9W5", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.34586.70634858521726340.aed5ca97-d1dc-4d71-ae1f-b3f94bf8b727.2b005ed6-f545-40d3-b5f0-8905ca07b05d?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.39086.70634858521726340.aed5ca97-d1dc-4d71-ae1f-b3f94bf8b727.195fa473-3f52-4e68-9ec8-050cc33e4eb4?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.39086.70634858521726340.aed5ca97-d1dc-4d71-ae1f-b3f94bf8b727.195fa473-3f52-4e68-9ec8-050cc33e4eb4?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/halo-spartan-assault/BV0K9LMLQ9W5" }, { "gameTitle": "Halo: The Master Chief Collection", @@ -2469,7 +2613,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/halo-the-master-chief-collection/9MT8PTGVHX2P", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.16930.13817186670444302.148c432a-9fce-4c7d-bf13-8a2bd3a527b3.99d16324-9915-41d7-a388-fa5dd98940cb?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.36764.13817186670444302.148c432a-9fce-4c7d-bf13-8a2bd3a527b3.2a7b94f3-ed66-45b6-aaf3-337c18d442cd?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.36764.13817186670444302.148c432a-9fce-4c7d-bf13-8a2bd3a527b3.2a7b94f3-ed66-45b6-aaf3-337c18d442cd?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/halo-the-master-chief-collection/9MT8PTGVHX2P" }, { "gameTitle": "Hardspace: Shipbreaker", @@ -2487,7 +2632,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/hardspace-shipbreaker/9ND8C4314ZZG", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.11359.13552902647075103.9e24872e-3f43-4078-8279-1ddf37a77ab1.795f17b4-3acd-4226-91d9-5c6031d7899e?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.36125.13552902647075103.9e24872e-3f43-4078-8279-1ddf37a77ab1.246fb260-7ac0-4916-867b-dce60a943024?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.36125.13552902647075103.9e24872e-3f43-4078-8279-1ddf37a77ab1.246fb260-7ac0-4916-867b-dce60a943024?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/hardspace-shipbreaker/9ND8C4314ZZG" }, { "gameTitle": "Hellblade: Senua's Sacrifice", @@ -2504,7 +2650,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/hellblade-senua's-sacrifice/C4Z7QM8FSXM2", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.51441.67453348098260763.a9f96429-c651-425e-97d2-e8861561f15f.73c36cb3-fa0c-4b94-9cdf-abc1f2037096?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.41285.67453348098260763.a9f96429-c651-425e-97d2-e8861561f15f.d158352c-5ab5-4cf5-b164-a802f79dcbb4?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.41285.67453348098260763.a9f96429-c651-425e-97d2-e8861561f15f.d158352c-5ab5-4cf5-b164-a802f79dcbb4?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/hellblade-senua's-sacrifice/C4Z7QM8FSXM2" }, { "gameTitle": "Hollow Knight: Edi\u00e7\u00e3o Cora\u00e7\u00e3o Vazio", @@ -2522,7 +2669,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/hollow-knight-voidheart-edition/9MW9469V91LM", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.47695.13847644057609868.a4a91f76-8d1c-4e19-aa78-f4d27d2818fb.090b8af1-1963-48b3-8c6d-1255f335fceb?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.24270.13847644057609868.a4a91f76-8d1c-4e19-aa78-f4d27d2818fb.d96146d7-d00a-4db9-ad68-197b2f962a17?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.24270.13847644057609868.a4a91f76-8d1c-4e19-aa78-f4d27d2818fb.d96146d7-d00a-4db9-ad68-197b2f962a17?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/hollow-knight-edi%C3%A7%C3%A3o-cora%C3%A7%C3%A3o-vazio/9MW9469V91LM" }, { "gameTitle": "House Flipper", @@ -2539,7 +2687,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/house-flipper/9NBFGKQLMV33", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.46741.13518543789452586.33e180bb-4f0b-4a39-b1c8-cde6206c1eb3.63c679bb-4c3c-42c4-81bf-e3b3666a61b6?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.24765.13518543789452586.d00503fa-1953-4be5-a205-5e65a56ab2f0.794e8686-f38a-4418-9fa5-d9047bf4d77b?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.24765.13518543789452586.d00503fa-1953-4be5-a205-5e65a56ab2f0.794e8686-f38a-4418-9fa5-d9047bf4d77b?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/house-flipper/9NBFGKQLMV33" }, { "gameTitle": "Human Fall Flat", @@ -2557,7 +2706,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/human-fall-flat/BSMZH25V6V46", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.36512.69811231537758929.8d40cea0-047e-48e5-89c1-01dd6268bc1f.74d99451-6cd4-48c0-8abf-75d91ab2fad4?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.25220.69811231537758929.8d40cea0-047e-48e5-89c1-01dd6268bc1f.11d1a979-c3bd-4094-8358-d4d5a5e74660?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.25220.69811231537758929.8d40cea0-047e-48e5-89c1-01dd6268bc1f.11d1a979-c3bd-4094-8358-d4d5a5e74660?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/human-fall-flat/BSMZH25V6V46" }, { "gameTitle": "INSIDE", @@ -2575,7 +2725,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/inside/C17GQF31D617", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.26010.65290118777571754.27f1da0f-d581-4307-9bec-41016a2e5567.7b9d8bfe-920c-447d-a3f0-fa336b8d077f?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.20524.65290118777571754.6267d8c2-383e-428a-9ec3-ab8b52cdb946.d9d8d3fc-3054-4fa7-9262-3d2d19c5bad9?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.20524.65290118777571754.6267d8c2-383e-428a-9ec3-ab8b52cdb946.d9d8d3fc-3054-4fa7-9262-3d2d19c5bad9?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/inside/C17GQF31D617" }, { "gameTitle": "Immortal Realms: Vampire Wars", @@ -2592,7 +2743,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/immortal-realms-vampire-wars/9P4Q17HQ2WKW", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.32448.14584218626935250.46a9c0b9-f228-4521-a159-9133d5fe93a6.f787427a-eed6-4778-93cd-01e7a182d406?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.49275.14584218626935250.ba95fb18-2711-4235-b9e0-551e8ad946b7.a8b8641c-46cc-4baa-accc-668eb992eff4?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.49275.14584218626935250.ba95fb18-2711-4235-b9e0-551e8ad946b7.a8b8641c-46cc-4baa-accc-668eb992eff4?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/immortal-realms-vampire-wars/9P4Q17HQ2WKW" }, { "gameTitle": "Immortality", @@ -2609,7 +2761,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/immortality/9PM1905P9LQ6", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.52743.14302926931207469.aafd0cfc-a0f8-4195-84ed-10dd3c27bc62.3d18e51a-7c0f-4500-b194-9772ed4b7305?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.59178.14302926931207469.aafd0cfc-a0f8-4195-84ed-10dd3c27bc62.590efd19-cc96-422c-9b5b-4a6ce60c1b44?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.59178.14302926931207469.aafd0cfc-a0f8-4195-84ed-10dd3c27bc62.590efd19-cc96-422c-9b5b-4a6ce60c1b44?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/immortality/9PM1905P9LQ6" }, { "gameTitle": "Immortals Fenyx Rising\u2122", @@ -2626,7 +2779,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/immortals-fenyx-rising/C07KJZRH0L7S", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.55065.64682799204913125.f407971c-f15c-4acc-99e1-682aec54019d.a839231d-b5a5-42ed-8874-ec8165d6f165?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.30084.64682799204913125.f407971c-f15c-4acc-99e1-682aec54019d.8b30a1ba-1d1e-4659-8550-022a44a311f3?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.30084.64682799204913125.f407971c-f15c-4acc-99e1-682aec54019d.8b30a1ba-1d1e-4659-8550-022a44a311f3?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/immortals-fenyx-rising/C07KJZRH0L7S" }, { "gameTitle": "Infernax", @@ -2644,7 +2798,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/infernax/9NK7HNCG0R8D", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.3045.13661753595194559.6b97b9b9-2641-4892-950f-db05b0c5fa1c.85ed389e-c6c7-468b-8957-e3ce15d3c8ef?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.38765.13661753595194559.6b97b9b9-2641-4892-950f-db05b0c5fa1c.3d71f16e-50d4-42e2-ad91-23a891a499c0?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.38765.13661753595194559.6b97b9b9-2641-4892-950f-db05b0c5fa1c.3d71f16e-50d4-42e2-ad91-23a891a499c0?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/infernax/9NK7HNCG0R8D" }, { "gameTitle": "Injustice\u2122 2", @@ -2661,7 +2816,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/injustice-2/BPKVH4C4XV4N", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.15492.68598211680266771.73ef9826-822a-4a0b-ab4a-4fe8fd87fc3b.fcf3f2a7-591f-4316-a3cc-9a6595d29db9?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.52395.68598211680266771.73ef9826-822a-4a0b-ab4a-4fe8fd87fc3b.81db3eda-d4dd-440a-b266-1973f0472a82?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.52395.68598211680266771.73ef9826-822a-4a0b-ab4a-4fe8fd87fc3b.81db3eda-d4dd-440a-b266-1973f0472a82?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/injustice-2/BPKVH4C4XV4N" }, { "gameTitle": "It Takes Two - Vers\u00e3o Digital", @@ -2678,7 +2834,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/it-takes-two---digital-version/9NXVC0482QS5", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.4452.14488339386131194.84ca8b8a-582e-4d34-904e-8f1e60f71000.1164a903-9308-49c2-a477-3b887cffb341?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.40253.14488339386131194.84ca8b8a-582e-4d34-904e-8f1e60f71000.c3aaab37-0ce8-464b-85c1-4f42a74d9972?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.40253.14488339386131194.84ca8b8a-582e-4d34-904e-8f1e60f71000.c3aaab37-0ce8-464b-85c1-4f42a74d9972?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/it-takes-two---vers%C3%A3o-digital/9NXVC0482QS5" }, { "gameTitle": "Joy Ride Turbo", @@ -2696,7 +2853,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/joy-ride-turbo/C1ZWH2BZ9TSF", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.55462.65697580773346286.de1a7dea-d35c-459d-a15c-a737811ee00f.6e8da1e2-791b-4bc8-aaf6-a2665f7cdc90?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.59674.65697580773346286.de1a7dea-d35c-459d-a15c-a737811ee00f.39d1596a-d677-44a9-a70a-f9b3d4dae615?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.59674.65697580773346286.de1a7dea-d35c-459d-a15c-a737811ee00f.39d1596a-d677-44a9-a70a-f9b3d4dae615?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/joy-ride-turbo/C1ZWH2BZ9TSF" }, { "gameTitle": "Jurassic World Evolution 2", @@ -2714,7 +2872,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/jurassic-world-evolution-2/9MWHMJ0SRBXV", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.57135.13843646153700405.faf0a0ab-da0c-4a73-a182-1b5794b3f805.a540c175-d9d9-48ce-984f-cce5ab49a2d8?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.20618.13843646153700405.924d185c-4349-481c-aeb0-1806b6a3fe95.40a43d07-58cb-4315-98f0-946ac06b5ada?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.20618.13843646153700405.924d185c-4349-481c-aeb0-1806b6a3fe95.40a43d07-58cb-4315-98f0-946ac06b5ada?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/jurassic-world-evolution-2/9MWHMJ0SRBXV" }, { "gameTitle": "Just Cause 4: Reloaded", @@ -2731,7 +2890,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/just-cause-4-reloaded/9P9MC8B7R5FP", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.65015.14135675770949824.45a1c566-3aee-4e05-b600-cbc49fb16d6d.fb821434-f138-43f5-87d6-22eca4e67fa9?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.767.14135675770949824.45a1c566-3aee-4e05-b600-cbc49fb16d6d.a9fd3630-7e48-41e4-8029-e280aa7a44d4?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.767.14135675770949824.45a1c566-3aee-4e05-b600-cbc49fb16d6d.a9fd3630-7e48-41e4-8029-e280aa7a44d4?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/just-cause-4-reloaded/9P9MC8B7R5FP" }, { "gameTitle": "Kameo", @@ -2749,7 +2909,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/kameo/BV83SM3191S5", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.15560.71331020072920166.7e86d9ef-4edb-4eef-a0c8-86f5c9475e2f.aaf8b307-2d84-49cc-af67-613f0a8e8d8e?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.6864.71331020072920166.7e86d9ef-4edb-4eef-a0c8-86f5c9475e2f.53495cd6-6d72-4ef6-8879-874a14ef59d1?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.6864.71331020072920166.7e86d9ef-4edb-4eef-a0c8-86f5c9475e2f.53495cd6-6d72-4ef6-8879-874a14ef59d1?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/kameo/BV83SM3191S5" }, { "gameTitle": "Kentucky Route Zero: TV Edition", @@ -2766,7 +2927,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/kentucky-route-zero-tv-edition/9P6FTM76L1S7", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.12186.14620558670939884.b282563f-ef8a-4a4d-8cd6-6780477a8cf6.661c5892-e5d4-40d3-973b-8431fe499724?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.46375.14620558670939884.b282563f-ef8a-4a4d-8cd6-6780477a8cf6.b2d48b3e-ee0f-4bb6-8372-aa852f014f97?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.46375.14620558670939884.b282563f-ef8a-4a4d-8cd6-6780477a8cf6.b2d48b3e-ee0f-4bb6-8372-aa852f014f97?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/kentucky-route-zero-tv-edition/9P6FTM76L1S7" }, { "gameTitle": "Kill It With Fire", @@ -2784,7 +2946,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/kill-it-with-fire/9MZVSHQZ666K", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.12401.13862857064512538.2709e225-b83d-480b-aeaf-58a54a6a45bb.17dd9acd-bdb3-4201-9ec4-a5ff91f3344a?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.16880.13862857064512538.2709e225-b83d-480b-aeaf-58a54a6a45bb.75c585aa-5612-4aa0-98d5-03ff00faf437?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.16880.13862857064512538.2709e225-b83d-480b-aeaf-58a54a6a45bb.75c585aa-5612-4aa0-98d5-03ff00faf437?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/kill-it-with-fire/9MZVSHQZ666K" }, { "gameTitle": "Killer Instinct: Definitive Edition", @@ -2801,7 +2964,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/killer-instinct-definitive-edition/BVQ3FL3201P8", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.48860.71051199341094309.0502e995-3a0c-460f-bf9e-3401bb747a61.3decc6eb-56db-4491-8b1b-c9d06d4d5bc6?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.38849.71051199341094309.0502e995-3a0c-460f-bf9e-3401bb747a61.e0367efd-a551-4258-9a57-9062964f0b29?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.38849.71051199341094309.0502e995-3a0c-460f-bf9e-3401bb747a61.e0367efd-a551-4258-9a57-9062964f0b29?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/killer-instinct-definitive-edition/BVQ3FL3201P8" }, { "gameTitle": "Kraken Academy!!", @@ -2818,7 +2982,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/kraken-academy/9P87CGF1TCCX", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.17451.14093132429705053.80d7d0ce-fb78-4b3f-85e0-84bfb558041a.8594517f-cfdd-4bc2-a491-787adebd921c?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.9836.14093132429705053.80d7d0ce-fb78-4b3f-85e0-84bfb558041a.95449b6c-bc5a-49e5-a4f3-ecaf8ecaad02?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.9836.14093132429705053.80d7d0ce-fb78-4b3f-85e0-84bfb558041a.95449b6c-bc5a-49e5-a4f3-ecaf8ecaad02?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/kraken-academy/9P87CGF1TCCX" }, { "gameTitle": "Lake", @@ -2836,7 +3001,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/lake/9N5GLFTT40SN", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.60812.14038361809481235.e1ae8557-13ac-43d8-8e4b-bc0fcab05ea7.6b36ea35-f3a1-4d28-bfa0-098b45e73243?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.25972.14038361809481235.d87a9a19-dc97-4d6d-96de-9822f1aa65da.3fd66174-aa9a-4c9a-98b5-6b5827742295?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.25972.14038361809481235.d87a9a19-dc97-4d6d-96de-9822f1aa65da.3fd66174-aa9a-4c9a-98b5-6b5827742295?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/lake/9N5GLFTT40SN" }, { "gameTitle": "Lawn Mowing Simulator", @@ -2853,7 +3019,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/lawn-mowing-simulator/9NPFJTM4HBH9", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.40592.14489216339344377.71f12ec3-85b6-4f74-8483-db150fb3fd51.800c13d5-b95e-454e-81a6-979ed2befbea?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.17520.14489216339344377.71f12ec3-85b6-4f74-8483-db150fb3fd51.48f85cb5-808d-48c4-ab0a-303d843dac6c?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.17520.14489216339344377.71f12ec3-85b6-4f74-8483-db150fb3fd51.48f85cb5-808d-48c4-ab0a-303d843dac6c?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/lawn-mowing-simulator/9NPFJTM4HBH9" }, { "gameTitle": "Let's Build a Zoo", @@ -2871,7 +3038,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/let's-build-a-zoo/9P8N66DTG10T", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.63900.14084512162357210.0d6eea09-167f-4aad-97d7-d4d17f848799.2a1722e7-328d-4bb3-b556-0d4acae1567b?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.15530.14084512162357210.0d6eea09-167f-4aad-97d7-d4d17f848799.9a461717-eb83-4a42-875e-7c96139197b1?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.15530.14084512162357210.0d6eea09-167f-4aad-97d7-d4d17f848799.9a461717-eb83-4a42-875e-7c96139197b1?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/let's-build-a-zoo/9P8N66DTG10T" }, { "gameTitle": "Life is Strange: True Colors", @@ -2888,7 +3056,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/life-is-strange-true-colors/9NFWSNN4JWKB", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.27723.13586428055135571.f12709ac-4fdc-444a-9eb3-a38d712ce6f7.310d4be1-bc01-4faa-98a6-6d4b976eb6dc?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.45565.13586428055135571.f12709ac-4fdc-444a-9eb3-a38d712ce6f7.5cd24085-d5de-408d-9927-db66e4ecd831?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.45565.13586428055135571.f12709ac-4fdc-444a-9eb3-a38d712ce6f7.5cd24085-d5de-408d-9927-db66e4ecd831?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/life-is-strange-true-colors/9NFWSNN4JWKB" }, { "gameTitle": "Little Witch in the Woods (Game Preview)", @@ -2906,7 +3075,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/little-witch-in-the-woods-game-preview/9PM9ZVWT18WR", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.2960.14301619139286382.fe333953-9667-4a52-a6da-789301fea3ca.5aa04ac9-1d35-4f2b-bd14-b536034f06ea?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.45320.14301619139286382.fe333953-9667-4a52-a6da-789301fea3ca.cc32a834-82ec-49af-ace2-0a18b633f42c?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.45320.14301619139286382.fe333953-9667-4a52-a6da-789301fea3ca.cc32a834-82ec-49af-ace2-0a18b633f42c?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/little-witch-in-the-woods-game-preview/9PM9ZVWT18WR" }, { "gameTitle": "Lonely Mountains: Downhill", @@ -2924,7 +3094,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/lonely-mountains-downhill/9MV6MCVLT8GR", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.53295.13794437146560212.1c2132e1-8e75-4ecb-8f54-2474cd20e67a.772f1641-c20b-43ed-8316-94d97f7527a2?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.45145.13794437146560212.1c2132e1-8e75-4ecb-8f54-2474cd20e67a.3b124d2e-22b4-4666-b803-3f467fbfdbc1?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.45145.13794437146560212.1c2132e1-8e75-4ecb-8f54-2474cd20e67a.3b124d2e-22b4-4666-b803-3f467fbfdbc1?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/lonely-mountains-downhill/9MV6MCVLT8GR" }, { "gameTitle": "Loot River", @@ -2942,7 +3113,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/loot-river/9N8C03GW2TRB", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.17035.14047756119637031.8bee70cc-a32a-4d5f-85a7-9d5e7e9b2403.8891593a-1ef2-46ab-aad9-2d4a399625f1?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.40924.14047756119637031.8bee70cc-a32a-4d5f-85a7-9d5e7e9b2403.29e4c25c-890f-47c6-bc01-8c316225cc12?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.40924.14047756119637031.8bee70cc-a32a-4d5f-85a7-9d5e7e9b2403.29e4c25c-890f-47c6-bc01-8c316225cc12?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/loot-river/9N8C03GW2TRB" }, { "gameTitle": "Lost in Random\u2122", @@ -2960,7 +3132,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/lost-in-random/9NVRJS95FLM9", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.57092.14393276044279732.41dd1f17-b490-46da-821f-ee63792ed90a.860d6901-f703-4d9c-89d7-240528cd607a?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.44122.14393276044279732.a2dc62ed-f48c-4333-8800-5dd9645ff31a.76e34181-c386-4673-8f9b-15ee3b74f463?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.44122.14393276044279732.a2dc62ed-f48c-4333-8800-5dd9645ff31a.76e34181-c386-4673-8f9b-15ee3b74f463?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/lost-in-random/9NVRJS95FLM9" }, { "gameTitle": "MLB\u00ae The Show\u2122 22 Xbox Series X | S", @@ -2977,7 +3150,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/mlb-the-show-22-xbox-series-x-%7C-s/9MXM0G8RP4H4", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.32747.13891780821338361.3fb1a56d-0c2d-43c4-b10e-96729b18d908.5a83ba2e-0e26-417c-9e92-02a5429748d8?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.34090.13891780821338361.3fb1a56d-0c2d-43c4-b10e-96729b18d908.349a6519-5e19-4415-bee7-799dac45ac47?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.34090.13891780821338361.3fb1a56d-0c2d-43c4-b10e-96729b18d908.349a6519-5e19-4415-bee7-799dac45ac47?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/mlb-the-show-22-xbox-series-x-%7C-s/9MXM0G8RP4H4" }, { "gameTitle": "Maneater", @@ -2995,7 +3169,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/maneater/9P5B81KVDGP1", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.16927.14572536018362984.944e7368-3c2f-4b4e-8072-fe5da70a10fa.7c793b5f-5802-41ff-a28a-09de56512b3e?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.53142.14572536018362984.944e7368-3c2f-4b4e-8072-fe5da70a10fa.945db987-dfab-48e8-b6c9-06f3d2db5450?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.53142.14572536018362984.944e7368-3c2f-4b4e-8072-fe5da70a10fa.945db987-dfab-48e8-b6c9-06f3d2db5450?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/maneater/9P5B81KVDGP1" }, { "gameTitle": "Marvel's Avengers", @@ -3012,7 +3187,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/marvel's-avengers/BRX6HS1G5CDK", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.6955.69399725068812250.e18e30fe-4fd2-40d8-9c22-033732f7b7d3.2747f9ea-dbf7-4274-9066-95e0ae925afc?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.24728.69399725068812250.e18e30fe-4fd2-40d8-9c22-033732f7b7d3.4e644a3c-31c2-4c95-a506-798578841474?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.24728.69399725068812250.e18e30fe-4fd2-40d8-9c22-033732f7b7d3.4e644a3c-31c2-4c95-a506-798578841474?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/marvel's-avengers/BRX6HS1G5CDK" }, { "gameTitle": "Guardi\u00f5es da Gal\u00e1xia da Marvel", @@ -3029,7 +3205,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/marvel's-guardians-of-the-galaxy/9PGLL77C201J", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.25922.14183003051629257.3b865ad2-052d-4fc0-ad6a-2a83af20ce2d.d5f1507b-98e4-44f5-a37c-23cbfd60814f?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.18029.14183003051629257.3b865ad2-052d-4fc0-ad6a-2a83af20ce2d.6f965e82-c1c8-46bb-affe-f95f37d83625?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.18029.14183003051629257.3b865ad2-052d-4fc0-ad6a-2a83af20ce2d.6f965e82-c1c8-46bb-affe-f95f37d83625?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/guardi%C3%B5es-da-gal%C3%A1xia-da-marvel/9PGLL77C201J" }, { "gameTitle": "Mass Effect\u2122 Legendary Edition", @@ -3047,7 +3224,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/mass-effect-legendary-edition/9PKWHT7G60WQ", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.59262.14254372351363255.ac3906d1-13b6-4af0-a00a-e10c8a92007b.dac28bb8-f830-421f-9e92-08a9db8b19f8?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.32577.14254372351363255.ac3906d1-13b6-4af0-a00a-e10c8a92007b.f74e6e13-69bd-49f0-a873-2f8346a30ead?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.32577.14254372351363255.ac3906d1-13b6-4af0-a00a-e10c8a92007b.f74e6e13-69bd-49f0-a873-2f8346a30ead?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/mass-effect-legendary-edition/9PKWHT7G60WQ" }, { "gameTitle": "Mass Effect\u2122: Andromeda", @@ -3064,7 +3242,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/mass-effect-andromeda/BZPR04V49BMH", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.8041.63802047386749134.ad5f99e3-d1a2-49a5-bbb8-b299dc4073ec.526abbab-6137-45f8-a05b-8ace44165345?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.30680.63802047386749134.ad5f99e3-d1a2-49a5-bbb8-b299dc4073ec.54939ac9-4cd6-42f2-97da-9e8136cb7804?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.30680.63802047386749134.ad5f99e3-d1a2-49a5-bbb8-b299dc4073ec.54939ac9-4cd6-42f2-97da-9e8136cb7804?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/mass-effect-andromeda/BZPR04V49BMH" }, { "gameTitle": "Matchpoint - Tennis Championships", @@ -3081,7 +3260,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/matchpoint---tennis-championships/9P66GGSJR71M", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.54980.14625464772679282.0d11523a-1279-4a53-9b3a-c9af53b152b5.d7c5e229-c9dd-42f9-bc25-73b7a661e445?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.39673.14625464772679282.0d11523a-1279-4a53-9b3a-c9af53b152b5.8e2f886b-8157-4ad3-9723-2dda8a2aa616?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.39673.14625464772679282.0d11523a-1279-4a53-9b3a-c9af53b152b5.8e2f886b-8157-4ad3-9723-2dda8a2aa616?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/matchpoint---tennis-championships/9P66GGSJR71M" }, { "gameTitle": "MechWarrior 5: Mercenaries", @@ -3099,7 +3279,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/mechwarrior-5-mercenaries/9PB86W3JK8Z5", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.1453.14123304312086404.5dc09435-a0e3-402c-ba22-f58dbbaccd21.e2b9a345-d6e3-4983-ad7d-2d2c5c192d1c?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.37063.14123304312086404.5dc09435-a0e3-402c-ba22-f58dbbaccd21.e9d54515-b582-4bc5-8994-795a0037a962?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.37063.14123304312086404.5dc09435-a0e3-402c-ba22-f58dbbaccd21.e9d54515-b582-4bc5-8994-795a0037a962?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/mechwarrior-5-mercenaries/9PB86W3JK8Z5" }, { "gameTitle": "Medieval Dynasty", @@ -3117,7 +3298,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/medieval-dynasty/9PDDP6ML6XHF", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.26306.14156112272410024.03b91df3-d826-4d77-a692-6b75d9b18188.14e344a6-e6f9-43bd-8f8d-f6e965429119?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.63309.14156112272410024.03b91df3-d826-4d77-a692-6b75d9b18188.85b2f37e-0bd7-4de5-a925-bc86f2c59896?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.63309.14156112272410024.03b91df3-d826-4d77-a692-6b75d9b18188.85b2f37e-0bd7-4de5-a925-bc86f2c59896?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/medieval-dynasty/9PDDP6ML6XHF" }, { "gameTitle": "Metal: Hellsinger", @@ -3135,7 +3317,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/metal-hellsinger/9PDXJP3805DN", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.941.14211614393053975.a4ffed37-2d8b-4964-b012-03eb22bf47cc.6077b8e8-7907-409a-81b2-dd04488234ca?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.57354.14211614393053975.a4ffed37-2d8b-4964-b012-03eb22bf47cc.d3b3eebb-84f8-4ed6-9ad4-510a47f020c1?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.57354.14211614393053975.a4ffed37-2d8b-4964-b012-03eb22bf47cc.d3b3eebb-84f8-4ed6-9ad4-510a47f020c1?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/metal-hellsinger/9PDXJP3805DN" }, { "gameTitle": "Microsoft Flight Simulator: Standard Game of the Year Edition", @@ -3152,7 +3335,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/microsoft-flight-simulator-standard-game-of-the-ye/9MTJ74MKQM46", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.52431.13812224868484781.17992d5a-54a4-4eb9-b62c-fbb7cee6d597.67861cc8-eb60-46c2-b21a-034c890d47ae?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.45594.13812224868484781.17992d5a-54a4-4eb9-b62c-fbb7cee6d597.0588183a-d39e-442f-b30a-928a8d1a41ce?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.45594.13812224868484781.17992d5a-54a4-4eb9-b62c-fbb7cee6d597.0588183a-d39e-442f-b30a-928a8d1a41ce?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/microsoft-flight-simulator-standard-game-of-the-ye/9MTJ74MKQM46" }, { "gameTitle": "Terra-m\u00e9dia\u2122: Sombras da Guerra\u2122", @@ -3169,7 +3353,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/middle-earth-shadow-of-war/9PDV8FKWP3B4", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.1041.14146895813128195.1152921504736932926.b3b4137c-37ed-4268-8112-002922027d5f?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.12292.14146895813128195.1152921504736930957.923ab8a1-bb37-4438-91bf-9e376487014a?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.12292.14146895813128195.1152921504736930957.923ab8a1-bb37-4438-91bf-9e376487014a?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/terra-m%C3%A9dia-sombras-da-guerra/9PDV8FKWP3B4" }, { "gameTitle": "Midnight Fight Express", @@ -3187,7 +3372,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/midnight-fight-express/9PH1Q5TKPQCQ", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.50615.14244962307093415.153d6882-d2ec-4660-a3c5-c9c093b7ed2d.7664d83e-89b3-44f2-bd2e-f32c3510e006?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.59826.14244962307093415.153d6882-d2ec-4660-a3c5-c9c093b7ed2d.4c98d9f0-985b-49c7-8a41-a7a70d178171?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.59826.14244962307093415.153d6882-d2ec-4660-a3c5-c9c093b7ed2d.4c98d9f0-985b-49c7-8a41-a7a70d178171?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/midnight-fight-express/9PH1Q5TKPQCQ" }, { "gameTitle": "Mind Scanners", @@ -3205,7 +3391,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/mind-scanners/9MV8J6MFJNQV", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.64687.13792918252035849.70cae5d6-a601-49fa-aa3f-fe57d9dc8f66.9dad009e-69a8-440f-aba9-c95ff93f087f?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.31810.13792918252035849.70cae5d6-a601-49fa-aa3f-fe57d9dc8f66.05f7102e-6f01-4bb2-bacb-7208fd00fbd0?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.31810.13792918252035849.70cae5d6-a601-49fa-aa3f-fe57d9dc8f66.05f7102e-6f01-4bb2-bacb-7208fd00fbd0?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/mind-scanners/9MV8J6MFJNQV" }, { "gameTitle": "Minecraft Dungeons", @@ -3223,7 +3410,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/minecraft-dungeons/9N8NJ74FZTG9", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.33021.14045794648370014.2229d39b-90c3-496e-8fac-9987450ca4d8.1d642353-a1d9-490f-882f-e5f16a5b82de?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.15805.14045794648370014.2229d39b-90c3-496e-8fac-9987450ca4d8.5af45927-45d1-4c93-9d60-26f6ca857701?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.15805.14045794648370014.2229d39b-90c3-496e-8fac-9987450ca4d8.5af45927-45d1-4c93-9d60-26f6ca857701?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/minecraft-dungeons/9N8NJ74FZTG9" }, { "gameTitle": "Mirror's Edge\u2122 Catalyst", @@ -3240,7 +3428,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/mirror's-edge-catalyst/C48LBRJJCP2L", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.62830.66522486697599341.54595999-7800-48a6-8255-bf581c71e0dd.fdab5a16-85bd-4fa0-9c88-8ec2f16ced89?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.33334.66522486697599341.54595999-7800-48a6-8255-bf581c71e0dd.bec4e523-bef6-4b11-adb9-ae8bedd217fd?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.33334.66522486697599341.54595999-7800-48a6-8255-bf581c71e0dd.bec4e523-bef6-4b11-adb9-ae8bedd217fd?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/mirror's-edge-catalyst/C48LBRJJCP2L" }, { "gameTitle": "Monster Sanctuary", @@ -3258,7 +3447,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/monster-sanctuary/9MZNS9NZ97PF", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.50227.13871023289633408.edeba3ff-23a1-45dd-b6a3-ee86998577d7.6d86b053-b678-4040-8170-875f6344fbc0?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.23345.14110383629447010.41bebe3d-b046-4a61-b542-7c01abb0e231.acb13b52-db36-4454-9c83-a01433f36571?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.23345.14110383629447010.41bebe3d-b046-4a61-b542-7c01abb0e231.acb13b52-db36-4454-9c83-a01433f36571?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/monster-sanctuary/9MZNS9NZ97PF" }, { "gameTitle": "Monster Train", @@ -3276,7 +3466,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/monster-train/9NP4BGBLLLXM", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.48810.13730273714404372.ea561b73-8f7b-40a2-b473-ec2ebf0c6300.88bec4a9-c860-4583-b645-f44bd80755fb?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.3476.13730273714404372.ea561b73-8f7b-40a2-b473-ec2ebf0c6300.a0456ffb-9f54-4851-9a96-db7ea3d8f23b?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.3476.13730273714404372.ea561b73-8f7b-40a2-b473-ec2ebf0c6300.a0456ffb-9f54-4851-9a96-db7ea3d8f23b?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/monster-train/9NP4BGBLLLXM" }, { "gameTitle": "Moonglow Bay", @@ -3294,7 +3485,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/moonglow-bay/9P7VCSGBP9KL", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.7691.14100376622407307.eeb47dd8-8d38-411a-9501-284e813ed3bb.fdc1735e-8942-4170-8ed8-653bd1ec8caf?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.19597.14100376622407307.eeb47dd8-8d38-411a-9501-284e813ed3bb.23af0646-38ca-4310-8074-2928bdabc37c?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.19597.14100376622407307.eeb47dd8-8d38-411a-9501-284e813ed3bb.23af0646-38ca-4310-8074-2928bdabc37c?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/moonglow-bay/9P7VCSGBP9KL" }, { "gameTitle": "Moonlighter", @@ -3311,7 +3503,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/moonlighter/9P8XJRLCLH2P", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.23038.14078999020725962.ddb83977-3b2d-4498-aa21-0a1bdeb1cddc.b1c79423-8a23-4943-804b-c5333d258492?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.24606.14078999020725962.ddb83977-3b2d-4498-aa21-0a1bdeb1cddc.a7338ebd-e2fa-4523-a136-b3789f1f6fb6?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.24606.14078999020725962.ddb83977-3b2d-4498-aa21-0a1bdeb1cddc.a7338ebd-e2fa-4523-a136-b3789f1f6fb6?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/moonlighter/9P8XJRLCLH2P" }, { "gameTitle": "Moonscars", @@ -3329,7 +3522,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/moonscars/9P77VD8MGJX8", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.48607.14609228948314679.57b5d232-e029-48c3-a08c-a51885c8f604.a75be4f6-a08c-465f-8452-bf3c2ee5da75?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.16286.14609228948314679.57b5d232-e029-48c3-a08c-a51885c8f604.af5bedd3-16ab-4c9d-a23d-deda8b3b585f?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.16286.14609228948314679.57b5d232-e029-48c3-a08c-a51885c8f604.af5bedd3-16ab-4c9d-a23d-deda8b3b585f?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/moonscars/9P77VD8MGJX8" }, { "gameTitle": "Mortal Kombat 11", @@ -3346,7 +3540,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/mortal-kombat-11/BTC0L0BW6LWC", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.63277.70804610839547354.8da93c46-fd13-4b16-8ebe-e8e02c53d93e.9d395244-d5c3-4d17-a83d-2ff95537c0f6?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.31077.70804610839547354.8da93c46-fd13-4b16-8ebe-e8e02c53d93e.032a1c73-7961-4acf-a82a-89d2f3ccdd1f?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.31077.70804610839547354.8da93c46-fd13-4b16-8ebe-e8e02c53d93e.032a1c73-7961-4acf-a82a-89d2f3ccdd1f?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/mortal-kombat-11/BTC0L0BW6LWC" }, { "gameTitle": "Mortal Shell: Enhanced Edition", @@ -3364,7 +3559,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/mortal-shell-enhanced-edition/9PC2BJDXR2LK", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.60033.14112185653659482.b5e15e3a-13c2-47bd-9e60-7709b165611f.727ea54e-9116-49fb-9def-e303eda19df8?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.48998.14112185653659482.b5e15e3a-13c2-47bd-9e60-7709b165611f.1a8e8ab6-788c-41d0-8d25-cedfa921075d?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.48998.14112185653659482.b5e15e3a-13c2-47bd-9e60-7709b165611f.1a8e8ab6-788c-41d0-8d25-cedfa921075d?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/mortal-shell-enhanced-edition/9PC2BJDXR2LK" }, { "gameTitle": "MotoGP\u212222", @@ -3382,7 +3578,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/motogp22/9P6N58X27150", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.38272.14616445086878693.b5e88527-6d84-46b3-aedb-b4ca1a01a63e.303843a3-9ef9-4014-8dbb-c89f6584b086?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.15559.14616445086878693.b5e88527-6d84-46b3-aedb-b4ca1a01a63e.b31f234a-d4e9-4e75-9c39-592ef3632d31?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.15559.14616445086878693.b5e88527-6d84-46b3-aedb-b4ca1a01a63e.b31f234a-d4e9-4e75-9c39-592ef3632d31?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/motogp22/9P6N58X27150" }, { "gameTitle": "My Friend Pedro", @@ -3400,7 +3597,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/my-friend-pedro/9P16M6LF0QFH", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.40064.14517273440942106.95022d0f-01e8-4fa1-a16a-b7fa27a20afd.64ddf521-d35e-4239-a6ad-fbec57d06bde?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.21399.14517273440942106.95022d0f-01e8-4fa1-a16a-b7fa27a20afd.fe2afe97-b88e-417e-afdf-1e2b9968eda3?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.21399.14517273440942106.95022d0f-01e8-4fa1-a16a-b7fa27a20afd.fe2afe97-b88e-417e-afdf-1e2b9968eda3?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/my-friend-pedro/9P16M6LF0QFH" }, { "gameTitle": "Minha Amiga Peppa Pig", @@ -3417,7 +3615,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/my-friend-peppa-pig/9NDJLXD2X2DM", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.41714.13613420443671332.a6ea2e8e-4acd-4934-b589-2d8cfaba7189.2f819a75-49ec-4ddd-858c-0752a4ae517a?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.16203.13613420443671332.a6ea2e8e-4acd-4934-b589-2d8cfaba7189.787c1e94-55bb-4581-806d-fc1d213da277?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.16203.13613420443671332.a6ea2e8e-4acd-4934-b589-2d8cfaba7189.787c1e94-55bb-4581-806d-fc1d213da277?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/minha-amiga-peppa-pig/9NDJLXD2X2DM" }, { "gameTitle": "My Time at Portia", @@ -3434,7 +3633,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/my-time-at-portia/BX1FZX1X4132", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.8924.63380265586365831.1555bbb7-7743-4e40-af30-9522b68b2b3c.9ec78f2b-f34d-413c-b72f-31d62eb51f09?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.27124.63380265586365831.1555bbb7-7743-4e40-af30-9522b68b2b3c.4000aac7-cfe0-4fcb-b9c2-a91cba69048e?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.27124.63380265586365831.1555bbb7-7743-4e40-af30-9522b68b2b3c.4000aac7-cfe0-4fcb-b9c2-a91cba69048e?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/my-time-at-portia/BX1FZX1X4132" }, { "gameTitle": "NARAKA: BLADEPOINT - Edi\u00e7\u00e3o Standard", @@ -3451,7 +3651,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/naraka-bladepoint---standard-edition/9MVVDHS95RCL", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.63321.13856197661114247.d18d95b4-04ab-4306-83a8-f6f7868b9215.8d21aeec-01d7-4eb0-873f-50adc19d0699?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.13827.13856197661114247.d18d95b4-04ab-4306-83a8-f6f7868b9215.1c38d90a-faa5-422f-98a4-e916379caea7?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.13827.13856197661114247.d18d95b4-04ab-4306-83a8-f6f7868b9215.1c38d90a-faa5-422f-98a4-e916379caea7?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/naraka-bladepoint---edi%C3%A7%C3%A3o-standard/9MVVDHS95RCL" }, { "gameTitle": "NINJA GAIDEN 3: Razor's Edge", @@ -3468,7 +3669,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/ninja-gaiden-3-razor's-edge/9N27DBP8GNNB", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.34045.13957002730398149.0cea4e4d-b211-438d-b3fc-78fd52485184.fc4f1171-49f7-4812-b943-3ed19812f720?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.57988.13957002730398149.0cea4e4d-b211-438d-b3fc-78fd52485184.fc986eb9-ad62-426f-ad0b-81b66ca9bf53?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.57988.13957002730398149.0cea4e4d-b211-438d-b3fc-78fd52485184.fc986eb9-ad62-426f-ad0b-81b66ca9bf53?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/ninja-gaiden-3-razor's-edge/9N27DBP8GNNB" }, { "gameTitle": "NINJA GAIDEN \u03a3", @@ -3485,7 +3687,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/ninja-gaiden-%CF%83/9NZ5QW71X49G", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.19050.14486675416442203.186df2ad-99aa-4e4f-bcb4-cb37ca999946.df485081-ec17-460b-9e62-e385c1297574?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.3733.14486675416442203.186df2ad-99aa-4e4f-bcb4-cb37ca999946.9fecacb7-4e26-423b-a102-806174d893fa?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.3733.14486675416442203.186df2ad-99aa-4e4f-bcb4-cb37ca999946.9fecacb7-4e26-423b-a102-806174d893fa?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/ninja-gaiden-%CF%83/9NZ5QW71X49G" }, { "gameTitle": "NINJA GAIDEN \u03a32", @@ -3502,7 +3705,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/ninja-gaiden-%CF%832/9PGSC3PW4N8Z", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.62138.14245467679473898.001107c4-7d89-4b24-ae55-6960d7565280.fde9e16e-7907-4d7f-802e-22f2da8e8667?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.51238.14245467679473898.001107c4-7d89-4b24-ae55-6960d7565280.ce96479e-ba13-4c86-b16c-6dc1855dfde5?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.51238.14245467679473898.001107c4-7d89-4b24-ae55-6960d7565280.ce96479e-ba13-4c86-b16c-6dc1855dfde5?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/ninja-gaiden-%CF%832/9PGSC3PW4N8Z" }, { "gameTitle": "Need for Speed\u2122 Heat", @@ -3519,7 +3723,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/need-for-speed-heat/BRZZLBF5T245", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.64382.69435230515002378.b30b404a-238a-48e8-8b5e-96664f17ed38.a02f1bcb-53dc-4074-adae-9bff70c7e646?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.54237.69435230515002378.b30b404a-238a-48e8-8b5e-96664f17ed38.02fe8a52-9076-42cd-abc5-521975a572b0?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.54237.69435230515002378.b30b404a-238a-48e8-8b5e-96664f17ed38.02fe8a52-9076-42cd-abc5-521975a572b0?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/need-for-speed-heat/BRZZLBF5T245" }, { "gameTitle": "Need for Speed\u2122 Hot Pursuit Remastered", @@ -3537,7 +3742,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/need-for-speed-hot-pursuit-remastered/9NMBJQ0265ZK", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.50193.13695403561576988.5461aeea-bae0-45c6-b5d4-5d6c85d1216c.9a0f44da-d2ef-442a-a767-3ef1ff4650a6?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.47104.13695403561576988.5461aeea-bae0-45c6-b5d4-5d6c85d1216c.25dcbbc6-1380-4850-8611-16c0d37f7168?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.47104.13695403561576988.5461aeea-bae0-45c6-b5d4-5d6c85d1216c.25dcbbc6-1380-4850-8611-16c0d37f7168?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/need-for-speed-hot-pursuit-remastered/9NMBJQ0265ZK" }, { "gameTitle": "Neoverse", @@ -3555,7 +3761,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/neoverse/9NNSTP6KJTZ9", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.15039.13732308681387652.912ddfff-827b-4ec6-879c-11fe5776733d.4e326538-4399-4261-915b-16889e375da8?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.65226.13732308681387652.912ddfff-827b-4ec6-879c-11fe5776733d.16e951e2-5ad9-400d-8501-88cc84ac6b9f?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.65226.13732308681387652.912ddfff-827b-4ec6-879c-11fe5776733d.16e951e2-5ad9-400d-8501-88cc84ac6b9f?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/neoverse/9NNSTP6KJTZ9" }, { "gameTitle": "New Super Lucky's Tale", @@ -3573,7 +3780,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/new-super-lucky's-tale/9MZN3SMXN824", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.42417.13867280688858311.8624d86c-7857-440e-9303-9897a29ba67e.42b5def2-8e7f-4ff7-a75b-72354e44d97e?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.3998.13867280688858311.8624d86c-7857-440e-9303-9897a29ba67e.85558656-0ed2-4a79-9abb-424d9edcda0a?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.3998.13867280688858311.8624d86c-7857-440e-9303-9897a29ba67e.85558656-0ed2-4a79-9abb-424d9edcda0a?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/new-super-lucky's-tale/9MZN3SMXN824" }, { "gameTitle": "Next Space Rebels", @@ -3591,7 +3799,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/next-space-rebels/9PBGCRBQKXTP", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.64109.14119640268172716.d5337920-4722-41a0-b754-c6d32e905713.e82cc454-38a7-4868-8490-f79b73c8312f?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.59031.14119640268172716.d5337920-4722-41a0-b754-c6d32e905713.5f306222-ac0a-43c5-adff-2debc38b87a3?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.59031.14119640268172716.d5337920-4722-41a0-b754-c6d32e905713.5f306222-ac0a-43c5-adff-2debc38b87a3?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/next-space-rebels/9PBGCRBQKXTP" }, { "gameTitle": "Ni no Kuni Wrath of the White Witch\u2122 Remastered", @@ -3608,7 +3817,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/ni-no-kuni-wrath-of-the-white-witch-remastered/9P7SL78VHVMF", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.57893.14101239125163632.01de9600-be68-4ca2-ad44-3bd38be94a52.4b2ed267-ccba-45eb-b8bd-97484e350d07?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.11224.14101239125163632.01de9600-be68-4ca2-ad44-3bd38be94a52.115cbde1-1f23-46f0-8ab3-13e6fbcd5ea1?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.11224.14101239125163632.01de9600-be68-4ca2-ad44-3bd38be94a52.115cbde1-1f23-46f0-8ab3-13e6fbcd5ea1?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/ni-no-kuni-wrath-of-the-white-witch-remastered/9P7SL78VHVMF" }, { "gameTitle": "No Man's Sky", @@ -3626,7 +3836,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/no-man's-sky/BQVQTL3PCH05", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.59103.68818099466568894.5fae376b-4fd4-4e61-a81c-a5575757b3b1.f5794177-89b9-4d01-b006-1402f1aae16c?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.15580.68818099466568894.5fae376b-4fd4-4e61-a81c-a5575757b3b1.9532faae-3b75-43f9-ac89-228908154773?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.15580.68818099466568894.5fae376b-4fd4-4e61-a81c-a5575757b3b1.9532faae-3b75-43f9-ac89-228908154773?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/no-man's-sky/BQVQTL3PCH05" }, { "gameTitle": "Nobody Saves the World", @@ -3644,7 +3855,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/nobody-saves-the-world/9NFZ65KKJ10X", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.53413.13585830814774327.d6e142bb-27e2-4109-8139-edac768eca10.bd597240-e065-42b4-a809-b42e4a7a9815?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.10184.13585830814774327.d6e142bb-27e2-4109-8139-edac768eca10.4233d247-29c3-40cb-8464-f762cb01cbef?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.10184.13585830814774327.d6e142bb-27e2-4109-8139-edac768eca10.4233d247-29c3-40cb-8464-f762cb01cbef?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/nobody-saves-the-world/9NFZ65KKJ10X" }, { "gameTitle": "Nongunz: Doppelganger Edition", @@ -3662,7 +3874,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/nongunz-doppelganger-edition/9NRDVCW02JD7", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.13510.14389204367011736.3e1e89b1-9b12-46d7-a373-9348f56d1999.2374e012-8afd-4e41-acc1-2d15f23b0f81?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.39117.14389204367011736.3e1e89b1-9b12-46d7-a373-9348f56d1999.3bbc5593-9036-49ce-bdbe-66f4731f65c0?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.39117.14389204367011736.3e1e89b1-9b12-46d7-a373-9348f56d1999.3bbc5593-9036-49ce-bdbe-66f4731f65c0?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/nongunz-doppelganger-edition/9NRDVCW02JD7" }, { "gameTitle": "Nuclear Throne", @@ -3679,7 +3892,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/nuclear-throne/9PCCFDH6LMQJ", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.45919.14171913677755527.7e192ea5-4d8a-4cd4-8882-2ee02006dca6.ec5431c5-cd06-42a4-8e49-d3d44661887f?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.64049.14171913677755527.67ba416c-4030-4b8b-9fbf-42a68fbf3665.370f6d61-4597-4d1c-9619-218684dc419c?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.64049.14171913677755527.67ba416c-4030-4b8b-9fbf-42a68fbf3665.370f6d61-4597-4d1c-9619-218684dc419c?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/nuclear-throne/9PCCFDH6LMQJ" }, { "gameTitle": "OCTOPATH TRAVELER", @@ -3696,7 +3910,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/octopath-traveler/9N9606CC950J", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.18141.13539010844025035.cd25451c-c47c-45c8-b378-724488a9e769.8071ec1d-5580-4953-94a4-08c603c7e808?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.53807.13539010844025035.cd25451c-c47c-45c8-b378-724488a9e769.8364beae-f919-4489-bd3c-6d533470324a?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.53807.13539010844025035.cd25451c-c47c-45c8-b378-724488a9e769.8364beae-f919-4489-bd3c-6d533470324a?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/octopath-traveler/9N9606CC950J" }, { "gameTitle": "OMORI", @@ -3713,7 +3928,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/omori/9P8WMQ1S4TF9", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.63765.14079624955953364.e347e65c-a873-4507-900a-8f8da39e1b5e.43fca221-a279-4413-b1f5-0cebd4e6c80d?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.29601.14079624955953364.e347e65c-a873-4507-900a-8f8da39e1b5e.065ccec7-e1fd-4dbf-8ef6-37f6f6d72b69?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.29601.14079624955953364.e347e65c-a873-4507-900a-8f8da39e1b5e.065ccec7-e1fd-4dbf-8ef6-37f6f6d72b69?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/omori/9P8WMQ1S4TF9" }, { "gameTitle": "ONE PIECE PIRATE WARRIORS 4", @@ -3730,7 +3946,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/one-piece-pirate-warriors-4/9N6HB778ZWP2", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.29551.14013874404154427.01749ccd-5277-41b8-9db6-ca15905ced80.a8c1d3c0-4e29-4d7c-98de-5c32552fec0a?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.3120.14013874404154427.01749ccd-5277-41b8-9db6-ca15905ced80.9761c64f-4d3e-4131-9148-c75c7f7bf7de?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.3120.14013874404154427.01749ccd-5277-41b8-9db6-ca15905ced80.9761c64f-4d3e-4131-9148-c75c7f7bf7de?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/one-piece-pirate-warriors-4/9N6HB778ZWP2" }, { "gameTitle": "OPUS: Echo of Starsong - Full Bloom Edition", @@ -3748,7 +3965,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/opus-echo-of-starsong---full-bloom-edition/9NKKDCVR3VW9", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.10319.13659592663783828.c218620d-b41e-4037-9cc0-e5ec840c80aa.632cb077-44e2-4f26-a70f-d2d9319885bf?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.34255.13659592663783828.c218620d-b41e-4037-9cc0-e5ec840c80aa.1aeabba3-0a7e-404c-9598-4f268268e30e?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.34255.13659592663783828.c218620d-b41e-4037-9cc0-e5ec840c80aa.1aeabba3-0a7e-404c-9598-4f268268e30e?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/opus-echo-of-starsong---full-bloom-edition/9NKKDCVR3VW9" }, { "gameTitle": "OUTRIDERS", @@ -3766,7 +3984,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/outriders/C083G6BGJ334", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.46955.64676761359365869.c6056fd3-1a88-4909-9197-e47917a0daf9.ab2ec758-0b35-43db-83ca-596f30f3ee25?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.56574.64676761359365869.4c4dfa98-d983-48f6-8be8-947cb40983a7.b459f4f1-1077-458a-ac01-ef6b27d70259?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.56574.64676761359365869.4c4dfa98-d983-48f6-8be8-947cb40983a7.b459f4f1-1077-458a-ac01-ef6b27d70259?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/outriders/C083G6BGJ334" }, { "gameTitle": "Olija", @@ -3784,7 +4003,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/olija/9N6PB00DXQ7H", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.1798.14014649267663230.52cdcd0a-d270-4877-9bec-d99419176577.babaad03-70b2-4054-99a2-78cda280cc86?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.62077.14014649267663230.52cdcd0a-d270-4877-9bec-d99419176577.6d22e768-29fc-458a-b5c8-fec8db421247?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.62077.14014649267663230.52cdcd0a-d270-4877-9bec-d99419176577.6d22e768-29fc-458a-b5c8-fec8db421247?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/olija/9N6PB00DXQ7H" }, { "gameTitle": "One Step From Eden", @@ -3802,7 +4022,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/one-step-from-eden/9N4K8K2ZGF1L", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.55511.13981836529399843.3570f80e-7819-4f87-b589-3809aeb668e9.ddcae108-9ddc-424e-9d20-08456c042346?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.33011.13981836529399843.3570f80e-7819-4f87-b589-3809aeb668e9.2f8a517b-8c9a-4ac3-9b87-28ae4a05f0c8?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.33011.13981836529399843.3570f80e-7819-4f87-b589-3809aeb668e9.2f8a517b-8c9a-4ac3-9b87-28ae4a05f0c8?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/one-step-from-eden/9N4K8K2ZGF1L" }, { "gameTitle": "Ori and the Blind Forest: Definitive Edition", @@ -3820,7 +4041,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/ori-and-the-blind-forest-definitive-edition/BW85KQB8Q31M", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.33006.71930896676716842.b6740fa4-0359-4ca8-9e17-5d4e45c2d497.106c936e-9312-4ea3-b2c1-d6ea54a4377d?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.3754.71930896676716842.b6740fa4-0359-4ca8-9e17-5d4e45c2d497.9c175dbd-1b8c-47b2-bb1c-d23a73dba0b2?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.3754.71930896676716842.b6740fa4-0359-4ca8-9e17-5d4e45c2d497.9c175dbd-1b8c-47b2-bb1c-d23a73dba0b2?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/ori-and-the-blind-forest-definitive-edition/BW85KQB8Q31M" }, { "gameTitle": "Ori and the Will of the Wisps", @@ -3838,7 +4060,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/ori-and-the-will-of-the-wisps/9N8CD0XZKLP4", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.37519.14047496556148589.9fda5cef-7995-4dbb-a626-66d2ab3feb4f.c81b9aaa-f139-44ac-b9ca-0aa0dd0cbffb?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.40411.14047496556148589.9fda5cef-7995-4dbb-a626-66d2ab3feb4f.d87f046c-667d-4ce7-98bc-eba2b535dc94?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.40411.14047496556148589.9fda5cef-7995-4dbb-a626-66d2ab3feb4f.d87f046c-667d-4ce7-98bc-eba2b535dc94?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/ori-and-the-will-of-the-wisps/9N8CD0XZKLP4" }, { "gameTitle": "Outer Wilds", @@ -3856,7 +4079,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/outer-wilds/C596FKDKMQN7", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.38686.67120997535715720.38c3e502-0019-4560-826e-634bbaf5cb4b.26a27298-66b5-489a-83dc-b1741a12905f?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.22579.67120997535715720.38c3e502-0019-4560-826e-634bbaf5cb4b.d08b8fa2-f53a-46ef-a7b9-486040abe414?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.22579.67120997535715720.38c3e502-0019-4560-826e-634bbaf5cb4b.d08b8fa2-f53a-46ef-a7b9-486040abe414?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/outer-wilds/C596FKDKMQN7" }, { "gameTitle": "Overcooked! 2", @@ -3873,7 +4097,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/overcooked-2/BVJLKDG2TX8H", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.60458.70952388438497888.9a8a7127-1933-427d-b864-f4857d4c02fd.734afa54-8396-4590-8a61-9565e4eeca71?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.22394.70952388438497888.9a8a7127-1933-427d-b864-f4857d4c02fd.5e9c5e67-db11-4c9e-a360-9ab9317594c5?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.22394.70952388438497888.9a8a7127-1933-427d-b864-f4857d4c02fd.5e9c5e67-db11-4c9e-a360-9ab9317594c5?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/overcooked-2/BVJLKDG2TX8H" }, { "gameTitle": "PAC-MAN MUSEUM+", @@ -3891,7 +4116,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/pac-man-museum/9P6W2Q41BB8V", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.41708.14612183358312597.ac18d1d8-4c6f-4fc0-aa76-31549ff4c4cc.27daf2c6-bb6f-45f5-95e6-81f19c23b533?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.7949.14612183358312597.ac18d1d8-4c6f-4fc0-aa76-31549ff4c4cc.4468f88e-e375-427b-bcdb-9b4f17dd774d?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.7949.14612183358312597.ac18d1d8-4c6f-4fc0-aa76-31549ff4c4cc.4468f88e-e375-427b-bcdb-9b4f17dd774d?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/pac-man-museum/9P6W2Q41BB8V" }, { "gameTitle": "Patrulha Canina: Super Filhotes Salvam a Ba\u00eda da Aventura", @@ -3909,7 +4135,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/paw-patrol-mighty-pups-save-adventure-bay/9N3TF03KNTBD", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.3013.13996206863599819.e2c5aea7-cee9-4965-bcf2-983a449c260d.3492e484-91a4-4558-b189-66444c715f51?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.21390.13996206863599819.e2c5aea7-cee9-4965-bcf2-983a449c260d.a0878837-f0e2-4ccd-83cf-707c7f9b44bd?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.21390.13996206863599819.e2c5aea7-cee9-4965-bcf2-983a449c260d.a0878837-f0e2-4ccd-83cf-707c7f9b44bd?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/patrulha-canina-super-filhotes-salvam-a-ba%C3%ADa-da-av/9N3TF03KNTBD" }, { "gameTitle": "Patrulha Canina: O Filme A Cidade da Aventura est\u00e1 chamando", @@ -3927,7 +4154,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/paw-patrol-the-movie-adventure-city-calls/9NVN8NSXDK41", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.52763.14390988319138042.36b13a64-9b0f-4a63-975d-6accaeba2284.1e37bfc8-9556-4feb-8d93-f976b08ef10c?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.42826.14390988319138042.36b13a64-9b0f-4a63-975d-6accaeba2284.2f1fc250-8ed1-42e1-bf2f-bef318166a0c?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.42826.14390988319138042.36b13a64-9b0f-4a63-975d-6accaeba2284.2f1fc250-8ed1-42e1-bf2f-bef318166a0c?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/patrulha-canina-o-filme-a-cidade-da-aventura-est%C3%A1-/9NVN8NSXDK41" }, { "gameTitle": "Patrulha Canina: Grand Prix", @@ -3945,7 +4173,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/paw-patrol-grand-prix/9MWBT3HFCZ3Z", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.30417.13842132658396836.fba80705-9bc9-45ad-84f9-621f75fe99ec.63412d4a-24e5-449a-9622-75435adb7a73?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.53527.13842132658396836.fba80705-9bc9-45ad-84f9-621f75fe99ec.a7d39a33-f2c3-408b-a88d-4ef40eb5c446?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.53527.13842132658396836.fba80705-9bc9-45ad-84f9-621f75fe99ec.a7d39a33-f2c3-408b-a88d-4ef40eb5c446?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/patrulha-canina-grand-prix/9MWBT3HFCZ3Z" }, { "gameTitle": "Paradise Killer", @@ -3963,7 +4192,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/paradise-killer/9N673ZL1TCS7", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.55008.14023862983584172.71823e2e-c6b2-4372-a1b9-ec0708e514ce.1e206981-3371-4322-90e7-9da6f6a051dc?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.29823.14023862983584172.71823e2e-c6b2-4372-a1b9-ec0708e514ce.16cb92c1-927e-4e06-bcbc-c7dbc1794014?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.29823.14023862983584172.71823e2e-c6b2-4372-a1b9-ec0708e514ce.16cb92c1-927e-4e06-bcbc-c7dbc1794014?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/paradise-killer/9N673ZL1TCS7" }, { "gameTitle": "Peggle 2", @@ -3980,7 +4210,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/peggle-2/BNCZHKWRZ7BR", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.63323.67897516232762656.798d5423-ae25-4369-b9f2-33205af62a6f.a1c62ace-b09e-417f-913e-528d6f4ca5e6?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.22107.67897516232762656.798d5423-ae25-4369-b9f2-33205af62a6f.83cb696f-f678-4d37-85d1-80f6af20c9db?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.22107.67897516232762656.798d5423-ae25-4369-b9f2-33205af62a6f.83cb696f-f678-4d37-85d1-80f6af20c9db?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/peggle-2/BNCZHKWRZ7BR" }, { "gameTitle": "Perfect Dark Zero", @@ -3998,7 +4229,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/perfect-dark-zero/BZF7N4FQWHNR", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.21399.63613604984995316.d403620a-54b7-4a68-9850-e3bfda4c2552.9ba8a8e5-8c96-45b2-83cf-8eeef411eb81?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.35337.63613604984995316.d403620a-54b7-4a68-9850-e3bfda4c2552.bf1ef84f-cdda-4a06-9c9a-20c253d5bc91?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.35337.63613604984995316.d403620a-54b7-4a68-9850-e3bfda4c2552.bf1ef84f-cdda-4a06-9c9a-20c253d5bc91?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/perfect-dark-zero/BZF7N4FQWHNR" }, { "gameTitle": "Phoenix Point", @@ -4016,7 +4248,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/phoenix-point/9P1P5Q3BNM7J", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.155.14507726714197033.ea391b48-d8cb-4724-a6cb-765168bd5161.3cfc32f8-f682-490e-9e59-cd6548a4c102?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.12076.14507726714197033.ea391b48-d8cb-4724-a6cb-765168bd5161.35842418-ad0c-4ee7-90b0-3326d4a835e5?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.12076.14507726714197033.ea391b48-d8cb-4724-a6cb-765168bd5161.35842418-ad0c-4ee7-90b0-3326d4a835e5?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/phoenix-point/9P1P5Q3BNM7J" }, { "gameTitle": "Pikuniku", @@ -4033,7 +4266,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/pikuniku/9N8WRDC25K6J", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.19280.14041044108785223.82419c4d-359a-436a-b07d-12cf7137d8fc.e3b3a42f-2c98-4caa-ac45-4ef73653930c?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.17854.14041044108785223.82419c4d-359a-436a-b07d-12cf7137d8fc.60e1cfd0-28c3-4e37-9abd-fb5498e2465d?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.17854.14041044108785223.82419c4d-359a-436a-b07d-12cf7137d8fc.60e1cfd0-28c3-4e37-9abd-fb5498e2465d?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/pikuniku/9N8WRDC25K6J" }, { "gameTitle": "Pillars of Eternity II: Deadfire - Ultimate Edition", @@ -4051,7 +4285,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/pillars-of-eternity-ii-deadfire---ultimate-edition/9PJD2KMX7TZ6", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.10942.14218490899188575.a8c726f9-aa48-4378-bee2-0dffc21a7089.4b82a2de-3303-4ebf-aa9e-168b159f6207?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.18161.14218490899188575.a8c726f9-aa48-4378-bee2-0dffc21a7089.098005d1-269e-4f16-a67b-6669d7a9b05c?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.18161.14218490899188575.a8c726f9-aa48-4378-bee2-0dffc21a7089.098005d1-269e-4f16-a67b-6669d7a9b05c?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/pillars-of-eternity-ii-deadfire---ultimate-edition/9PJD2KMX7TZ6" }, { "gameTitle": "Pillars of Eternity: Complete Edition", @@ -4069,7 +4304,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/pillars-of-eternity-complete-edition/BS34VNW7H61F", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.15487.69508748727770428.7ce00ad4-485c-4664-819a-1d17af316267.8617d93c-eaf0-497c-b0f5-2f0e6102e9ff?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.29060.69508748727770428.7ce00ad4-485c-4664-819a-1d17af316267.f55434f9-2650-4cea-bf9a-a382615d7c8d?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.29060.69508748727770428.7ce00ad4-485c-4664-819a-1d17af316267.f55434f9-2650-4cea-bf9a-a382615d7c8d?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/pillars-of-eternity-complete-edition/BS34VNW7H61F" }, { "gameTitle": "Plants vs. Zombies Garden Warfare", @@ -4086,7 +4322,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/plants-vs.-zombies-garden-warfare/BTJ0T8C04ZBV", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.57712.70921300667420253.8c8a7ac7-d0bd-46fb-a144-4c5ea316247c.b4f3a4a4-1e61-4685-8c7a-49ef7addd34c?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.355.70921300667420253.8c8a7ac7-d0bd-46fb-a144-4c5ea316247c.ca1b5fa7-17a6-4df0-90d8-883fee1d88f5?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.355.70921300667420253.8c8a7ac7-d0bd-46fb-a144-4c5ea316247c.ca1b5fa7-17a6-4df0-90d8-883fee1d88f5?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/plants-vs.-zombies-garden-warfare/BTJ0T8C04ZBV" }, { "gameTitle": "Plants vs. Zombies\u2122: Batalha por Neighborville", @@ -4103,7 +4340,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/plants-vs.-zombies-battle-for-neighborville/C4HZC7LJG6PX", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.51083.66663660452837213.88feed53-4335-4b35-8a3a-476a0f0fd6ca.c4755ce8-cee4-4ca4-8f72-5e5bc6eae3de?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.46421.66663660452837213.88feed53-4335-4b35-8a3a-476a0f0fd6ca.e0e7835b-39ff-4892-8010-fd049a22fd5c?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.46421.66663660452837213.88feed53-4335-4b35-8a3a-476a0f0fd6ca.e0e7835b-39ff-4892-8010-fd049a22fd5c?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/plants-vs.-zombies-batalha-por-neighborville/C4HZC7LJG6PX" }, { "gameTitle": "Plants vs. Zombies\u2122 Garden Warfare 2", @@ -4120,7 +4358,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/plants-vs.-zombies-garden-warfare-2/BNRH7BRC1D02", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.25500.68092588132505117.32378282-ea7e-40c4-a3a2-81703aa936d7.188e00bb-916b-4c65-9bb7-f1e5f2a829f9?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.57302.68092588132505117.32378282-ea7e-40c4-a3a2-81703aa936d7.955d661f-9264-40d2-b964-35b3248f790d?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.57302.68092588132505117.32378282-ea7e-40c4-a3a2-81703aa936d7.955d661f-9264-40d2-b964-35b3248f790d?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/plants-vs.-zombies-garden-warfare-2/BNRH7BRC1D02" }, { "gameTitle": "Power Rangers: Battle for the Grid", @@ -4137,7 +4376,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/power-rangers-battle-for-the-grid/9P5VMG8D4P4B", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.60516.14636624242477201.684d5e4f-5586-4870-aa98-c0ce136ea8f4.4db9f25f-f2f2-4e72-a4d4-c4926ed6be0e?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.59497.14636624242477201.684d5e4f-5586-4870-aa98-c0ce136ea8f4.83c30c3a-ed8d-464b-ba04-2ed35e59a8ce?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.59497.14636624242477201.684d5e4f-5586-4870-aa98-c0ce136ea8f4.83c30c3a-ed8d-464b-ba04-2ed35e59a8ce?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/power-rangers-battle-for-the-grid/9P5VMG8D4P4B" }, { "gameTitle": "PowerWash Simulator", @@ -4154,7 +4394,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/powerwash-simulator/9NHDJC0NW20M", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.60360.13631853399995812.7c8d5b79-31b8-46af-9143-329dfb697258.813651fd-f64f-4d40-a513-0584c3e6d6a5?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.42503.13631853399995812.7c8d5b79-31b8-46af-9143-329dfb697258.5f06d2e9-fb6d-4e93-8ad0-f271312d6941?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.42503.13631853399995812.7c8d5b79-31b8-46af-9143-329dfb697258.5f06d2e9-fb6d-4e93-8ad0-f271312d6941?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/powerwash-simulator/9NHDJC0NW20M" }, { "gameTitle": "Prey", @@ -4171,7 +4412,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/prey/BQMVWCMB8P59", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.11350.69234794984509140.ef3477c5-d6c7-4bd4-b5c7-7664d0e9e1be.56e552ce-a8b5-40eb-ae32-c7cefd77e069?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.55797.69234794984509140.ef3477c5-d6c7-4bd4-b5c7-7664d0e9e1be.22c0f565-2056-48ca-aa9c-85e280ff78f2?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.55797.69234794984509140.ef3477c5-d6c7-4bd4-b5c7-7664d0e9e1be.22c0f565-2056-48ca-aa9c-85e280ff78f2?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/prey/BQMVWCMB8P59" }, { "gameTitle": "Prodeus", @@ -4189,7 +4431,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/prodeus/9MZRSLLWKWDV", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.13041.13864617007662897.01825ec5-fdc1-49fc-a5ac-f29f1860b3d2.b9a8b49a-0945-4ea8-a389-1cc6ba14ba50?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.9406.13864617007662897.01825ec5-fdc1-49fc-a5ac-f29f1860b3d2.4de0b1f4-bc29-45f6-9f06-cb0449d3d4d3?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.9406.13864617007662897.01825ec5-fdc1-49fc-a5ac-f29f1860b3d2.4de0b1f4-bc29-45f6-9f06-cb0449d3d4d3?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/prodeus/9MZRSLLWKWDV" }, { "gameTitle": "Project Wingman", @@ -4207,7 +4450,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/project-wingman/9NQ73XB1Q5ZG", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.22923.13774735967551951.4e47740d-df56-4f79-8338-58493ef3afb7.b580b6f9-fd70-4d43-8e6b-7f37ba6fa349?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.33562.13774735967551951.4e47740d-df56-4f79-8338-58493ef3afb7.da8b2b6f-1ef1-40fe-9e64-435c8e5c4c73?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.33562.13774735967551951.4e47740d-df56-4f79-8338-58493ef3afb7.da8b2b6f-1ef1-40fe-9e64-435c8e5c4c73?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/project-wingman/9NQ73XB1Q5ZG" }, { "gameTitle": "Psychonauts", @@ -4225,7 +4469,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/psychonauts/C5HHPG1TXDNG", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.18666.67203256484290113.fa47f972-08bc-4a6e-a86b-1114b30416e6.4bca37aa-490d-47c6-9385-dd7618a5c6eb?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.20895.67203256484290113.f0f8de04-809c-4624-894c-af72ab8f4440.81fd8bc3-e4d4-42e3-8753-feecdc73c7e4?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.20895.67203256484290113.f0f8de04-809c-4624-894c-af72ab8f4440.81fd8bc3-e4d4-42e3-8753-feecdc73c7e4?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/psychonauts/C5HHPG1TXDNG" }, { "gameTitle": "Psychonauts 2", @@ -4243,7 +4488,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/psychonauts-2/9NBR2VXT87SJ", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.17302.13578175979543723.424401c3-5602-4e35-abfc-c00f9156296a.e6d1e593-0006-4b73-886e-dd37b6626198?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.38893.13578175979543723.424401c3-5602-4e35-abfc-c00f9156296a.e5bedcb0-57fa-41f5-b177-a84aec587699?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.38893.13578175979543723.424401c3-5602-4e35-abfc-c00f9156296a.e5bedcb0-57fa-41f5-b177-a84aec587699?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/psychonauts-2/9NBR2VXT87SJ" }, { "gameTitle": "Pupperazzi", @@ -4261,7 +4507,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/pupperazzi/9P34LH5ZWBVG", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.9496.14545000756331709.fe0b8e3c-108f-4f54-a7d0-a2b1eded6bbe.eabd1905-e86b-417c-8694-e08cb97d72b2?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.63128.14545000756331709.fe0b8e3c-108f-4f54-a7d0-a2b1eded6bbe.55668df5-9844-4fa3-81df-ff8b50c38c48?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.63128.14545000756331709.fe0b8e3c-108f-4f54-a7d0-a2b1eded6bbe.55668df5-9844-4fa3-81df-ff8b50c38c48?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/pupperazzi/9P34LH5ZWBVG" }, { "gameTitle": "Quake", @@ -4278,7 +4525,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/quake/9P1Z43KRNQD4", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.31797.14497943460299347.3ad06bb4-d442-43a2-99e0-f41399a5b03e.d1944e73-cd9b-4fd2-914c-4a4c3db63b39?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.1853.14497943460299347.3ad06bb4-d442-43a2-99e0-f41399a5b03e.cd82a6c1-63e8-44e3-b84a-174ae43f0d57?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.1853.14497943460299347.3ad06bb4-d442-43a2-99e0-f41399a5b03e.cd82a6c1-63e8-44e3-b84a-174ae43f0d57?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/quake/9P1Z43KRNQD4" }, { "gameTitle": "RAGE", @@ -4296,7 +4544,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/rage/BR27BSZ2M3SR", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.51318.68925464159691452.a2903bed-8f56-422f-b4a8-81cca9a4bf93.ddfde01b-109b-479a-83d4-428746a31c96?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.61825.68925464159691452.a2903bed-8f56-422f-b4a8-81cca9a4bf93.6e1df128-dd81-4826-9673-1e056cb1d163?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.61825.68925464159691452.a2903bed-8f56-422f-b4a8-81cca9a4bf93.6e1df128-dd81-4826-9673-1e056cb1d163?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/rage/BR27BSZ2M3SR" }, { "gameTitle": "RAGE 2", @@ -4314,7 +4563,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/rage-2/C2DCJ95ZXBMS", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.25597.65377716030309997.4ce8fd57-e617-46e7-9d4f-e8b49f4d07ef.8032cd3b-4de6-4872-8e49-32f042b5a139?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.25179.65377716030309997.4ce8fd57-e617-46e7-9d4f-e8b49f4d07ef.c6a45f3d-a294-4a95-95e6-bcb8bab2ffec?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.25179.65377716030309997.4ce8fd57-e617-46e7-9d4f-e8b49f4d07ef.c6a45f3d-a294-4a95-95e6-bcb8bab2ffec?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/rage-2/C2DCJ95ZXBMS" }, { "gameTitle": "RESEARCH and DESTROY", @@ -4332,7 +4582,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/research-and-destroy/9NNZJ389GSW2", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.16507.13733601761067019.0d7183b3-e7b3-48cd-9ed1-a4a0444fb623.88d187de-1ddd-4b84-abba-68689e8a3c09?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.50804.13733601761067019.0d7183b3-e7b3-48cd-9ed1-a4a0444fb623.b09cbb60-6e7b-4165-8f7e-34866ad02323?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.50804.13733601761067019.0d7183b3-e7b3-48cd-9ed1-a4a0444fb623.b09cbb60-6e7b-4165-8f7e-34866ad02323?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/research-and-destroy/9NNZJ389GSW2" }, { "gameTitle": "Corre com o Ryan", @@ -4350,7 +4601,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/race-with-ryan/9N1JLJR48FBG", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.57033.13904742134987369.fd462387-ec74-4545-a15b-c5500d99e660.e38df00e-9a2f-48ad-8728-3af751b1817a?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.48112.13904742134987369.fd462387-ec74-4545-a15b-c5500d99e660.b73a1434-ca86-40f6-bc7a-8bb840ff845b?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.48112.13904742134987369.fd462387-ec74-4545-a15b-c5500d99e660.b73a1434-ca86-40f6-bc7a-8bb840ff845b?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/corre-com-o-ryan/9N1JLJR48FBG" }, { "gameTitle": "ReCore", @@ -4367,7 +4619,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/recore/9NBLGGH1Z6FQ", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.34726.13510798886186651.76cfa366-2ebc-44ea-984f-6bf954e4c742.3a35291d-d9c2-451a-ab83-e043aba71471?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.25983.13510798886186651.afa678b2-6141-401c-868d-2c30769054ea.fbd2b41c-ffb2-4148-816e-a140d005237b?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.25983.13510798886186651.afa678b2-6141-401c-868d-2c30769054ea.fbd2b41c-ffb2-4148-816e-a140d005237b?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/recore/9NBLGGH1Z6FQ" }, { "gameTitle": "Recompile", @@ -4385,7 +4638,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/recompile/9PDRJWHBSK88", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.7926.14144555811461915.e7755e4b-3306-4aad-9430-4916b54d99c2.b1011be9-3984-4479-9824-34a919e4d224?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.62031.14144555811461915.e7755e4b-3306-4aad-9430-4916b54d99c2.e28fe86b-b80a-4096-aaef-4230ab4f5808?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.62031.14144555811461915.e7755e4b-3306-4aad-9430-4916b54d99c2.e28fe86b-b80a-4096-aaef-4230ab4f5808?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/recompile/9PDRJWHBSK88" }, { "gameTitle": "Record of Lodoss War-Deedlit in Wonder Labyrinth-", @@ -4403,7 +4657,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/record-of-lodoss-war-deedlit-in-wonder-labyrinth-/9NRBH9HS807L", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.10926.14386120322819171.2fc4013e-47df-4a11-be12-356830abf1b1.0cef0785-64a2-402f-ab1b-cc19dfd1f741?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.51415.14386120322819171.2fc4013e-47df-4a11-be12-356830abf1b1.c0812796-7c40-41e8-b774-fc7504dfa489?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.51415.14386120322819171.2fc4013e-47df-4a11-be12-356830abf1b1.c0812796-7c40-41e8-b774-fc7504dfa489?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/record-of-lodoss-war-deedlit-in-wonder-labyrinth-/9NRBH9HS807L" }, { "gameTitle": "Road 96", @@ -4421,7 +4676,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/road-96/9NVBKDF85W8T", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.37271.14401791124788682.a53b3c8e-a868-4dbf-845f-6db87942340c.99d9dd76-ba11-4a9f-91ec-3068355983d4?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.46600.14401791124788682.93615ee9-0e7c-43f8-b866-893bdb3aeb43.3e813e23-8ad9-4054-b66a-9fa7925ae6a1?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.46600.14401791124788682.93615ee9-0e7c-43f8-b866-893bdb3aeb43.3e813e23-8ad9-4054-b66a-9fa7925ae6a1?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/road-96/9NVBKDF85W8T" }, { "gameTitle": "Rubber Bandits", @@ -4439,7 +4695,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/rubber-bandits/9PL36RW9ZTPW", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.26161.14250942844501146.afc9b68d-bea3-4e5a-8e85-e060a99b7a83.c11680cb-1676-4bec-ab7d-ca262614f3fd?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.48562.14250942844501146.afc9b68d-bea3-4e5a-8e85-e060a99b7a83.6c7609e8-dcee-40a3-a94c-5fbe2de6dc5b?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.48562.14250942844501146.afc9b68d-bea3-4e5a-8e85-e060a99b7a83.6c7609e8-dcee-40a3-a94c-5fbe2de6dc5b?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/rubber-bandits/9PL36RW9ZTPW" }, { "gameTitle": "RUSH: A Disney \u2022 PIXAR Adventure", @@ -4456,7 +4713,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/rush-a-disneypixar-adventure/9P3PL76N0KWZ", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.54193.14538559069860396.375a4717-d4e1-4c14-b278-f4787b52d21a.8ccfcf77-d0bc-4895-a1e6-f70806a4a045?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.5896.14538559069860396.1d93e2fd-2dab-4371-9ba3-622feb19d443.794b050e-1acc-4b57-a61d-eb1954b202d2?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.5896.14538559069860396.1d93e2fd-2dab-4371-9ba3-622feb19d443.794b050e-1acc-4b57-a61d-eb1954b202d2?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/rush-a-disney-%E2%80%A2-pixar-adventure/9P3PL76N0KWZ" }, { "gameTitle": "SCARLET NEXUS", @@ -4474,7 +4732,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/scarlet-nexus/9N9RMHTJX41P", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.11684.13531489140319204.2e417a21-11c1-4902-a4f1-8ac2c24c42b2.db8694a7-65f4-4932-ad63-c240816b2f95?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.24095.13531489140319204.2e417a21-11c1-4902-a4f1-8ac2c24c42b2.330b5343-f5a6-4d41-b88a-e550457cdee0?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.24095.13531489140319204.2e417a21-11c1-4902-a4f1-8ac2c24c42b2.330b5343-f5a6-4d41-b88a-e550457cdee0?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/scarlet-nexus/9N9RMHTJX41P" }, { "gameTitle": "STAR WARS Jedi: Fallen Order\u2122", @@ -4491,7 +4750,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/star-wars-jedi-fallen-order/C2CSDTSCBZ0C", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.52300.65392999590663672.028b6875-f925-4d40-b3a1-e44db3b4fa32.7bcb3d0f-46fc-43ea-84d1-031bd0817da2?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.16830.65392999590663672.028b6875-f925-4d40-b3a1-e44db3b4fa32.cc4f831d-718e-4771-9e6e-1a83cea24896?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.16830.65392999590663672.028b6875-f925-4d40-b3a1-e44db3b4fa32.cc4f831d-718e-4771-9e6e-1a83cea24896?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/star-wars-jedi-fallen-order/C2CSDTSCBZ0C" }, { "gameTitle": "STAR WARS\u2122 Battlefront\u2122 II", @@ -4508,7 +4768,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/star-wars-battlefront-ii/C0GWTPD0S8S1", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.57852.64256825846959382.44b5bc43-437a-4414-83ca-b41ba9e7764a.6845daab-0518-41a7-b14a-525d8d79f571?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.12447.64256825846959382.44b5bc43-437a-4414-83ca-b41ba9e7764a.0e2ce787-008a-4571-bf11-a161817b1e01?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.12447.64256825846959382.44b5bc43-437a-4414-83ca-b41ba9e7764a.0e2ce787-008a-4571-bf11-a161817b1e01?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/star-wars-battlefront-ii/C0GWTPD0S8S1" }, { "gameTitle": "STAR WARS\u2122: Squadrons", @@ -4526,7 +4787,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/star-wars-squadrons/BV9CWVQWNS4P", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.49564.71371953440216666.508e0708-a814-4f11-8420-5f620fd8ce09.6a0698b5-ba6b-4f01-8338-015ad9537a91?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.25186.71371953440216666.508e0708-a814-4f11-8420-5f620fd8ce09.60cc5eb5-7852-4e4c-8558-45342330e331?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.25186.71371953440216666.508e0708-a814-4f11-8420-5f620fd8ce09.60cc5eb5-7852-4e4c-8558-45342330e331?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/star-wars-squadrons/BV9CWVQWNS4P" }, { "gameTitle": "Scorn", @@ -4543,7 +4805,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/scorn/9NM3TNRPQXLR", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.51381.13699799412731780.9f7b812e-456c-430e-8cec-380f1ca9e4a2.dd9f4725-f6e0-4fe4-9484-9d5f22682786?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.16661.13699799412731780.1afb5b8c-d3cf-40b3-aa5e-f5e01adefd6c.71e32c0e-4c10-4a4b-a813-3478373b1769?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.16661.13699799412731780.1afb5b8c-d3cf-40b3-aa5e-f5e01adefd6c.71e32c0e-4c10-4a4b-a813-3478373b1769?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/scorn/9NM3TNRPQXLR" }, { "gameTitle": "Sea of Thieves", @@ -4560,7 +4823,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/sea-of-thieves/9P2N57MC619K", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.21319.14554784103656548.6c0bfca6-ceff-4368-9bde-2fe50f344136.c8d6c767-18a9-49cd-b9ca-4cc9a3a336e5?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.16127.14554784103656548.5229b523-ba31-4e1e-8b9b-af4211062227.7176a52d-9b92-4c1b-b756-af25abfa99c5?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.16127.14554784103656548.5229b523-ba31-4e1e-8b9b-af4211062227.7176a52d-9b92-4c1b-b756-af25abfa99c5?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/sea-of-thieves/9P2N57MC619K" }, { "gameTitle": "Second Extinction\u2122 (Game Preview)", @@ -4578,7 +4842,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/second-extinction-game-preview/9P9JZLNFQ9PT", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.42521.14137276003875252.d1d6dd04-81e9-424d-a1b6-7a81e52dfeef.e61cd8b8-4b66-4175-b861-651aa5adb79a?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.54318.14137276003875252.d1d6dd04-81e9-424d-a1b6-7a81e52dfeef.63325c2c-d76a-4c29-bc75-24d79c3b2ae0?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.54318.14137276003875252.d1d6dd04-81e9-424d-a1b6-7a81e52dfeef.63325c2c-d76a-4c29-bc75-24d79c3b2ae0?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/second-extinction-game-preview/9P9JZLNFQ9PT" }, { "gameTitle": "Secret Neighbor", @@ -4595,7 +4860,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/secret-neighbor/9P7GBPGT90L3", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.19855.14605254180386304.db0b6acf-32d5-404e-961c-57a78494928f.40fda6df-25aa-490f-ac84-95999557275c?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.46974.14605254180386304.db0b6acf-32d5-404e-961c-57a78494928f.afba8228-587f-49de-aba5-64dd2f3d2b98?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.46974.14605254180386304.db0b6acf-32d5-404e-961c-57a78494928f.afba8228-587f-49de-aba5-64dd2f3d2b98?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/secret-neighbor/9P7GBPGT90L3" }, { "gameTitle": "Serious Sam 4", @@ -4613,7 +4879,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/serious-sam-4/9N5521ZQMQMJ", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.47130.13969859700306157.e45e75fc-cfcd-4dcd-967b-c356d04848f4.096a5307-9c8a-4582-a415-9c38230bfbae?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.39832.13969859700306157.e45e75fc-cfcd-4dcd-967b-c356d04848f4.ae7b4d9b-dcf9-4f3b-8c35-2ace01d36092?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.39832.13969859700306157.e45e75fc-cfcd-4dcd-967b-c356d04848f4.ae7b4d9b-dcf9-4f3b-8c35-2ace01d36092?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/serious-sam-4/9N5521ZQMQMJ" }, { "gameTitle": "Shadowrun Returns", @@ -4631,7 +4898,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/shadowrun-returns/9N6PHQ93Z451", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.55573.14009816262451240.3e3808e2-1e94-4457-b77b-8450027fa25a.12a5baa8-dec7-4fe0-ba05-3b068d35b733?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.13787.14009816262451240.3e3808e2-1e94-4457-b77b-8450027fa25a.67b4a55c-423d-454c-9599-1d6de0439357?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.13787.14009816262451240.3e3808e2-1e94-4457-b77b-8450027fa25a.67b4a55c-423d-454c-9599-1d6de0439357?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/shadowrun-returns/9N6PHQ93Z451" }, { "gameTitle": "Shadowrun: Dragonfall - Director's Cut", @@ -4649,7 +4917,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/shadowrun-dragonfall---director's-cut/9PKJTP6DTND3", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.13822.14266045593708116.bcec8af8-9570-471e-aa75-827739f252f6.a3f2fd69-c499-4cb1-9860-59c5d1d91518?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.27671.14266045593708116.f6624cf3-4372-4621-81b9-875cd02d9c6f.b2a97150-68d6-4e16-b59a-15c696c6f29b?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.27671.14266045593708116.f6624cf3-4372-4621-81b9-875cd02d9c6f.b2a97150-68d6-4e16-b59a-15c696c6f29b?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/shadowrun-dragonfall---director's-cut/9PKJTP6DTND3" }, { "gameTitle": "Shadowrun: Hong Kong - Extended Edition", @@ -4667,7 +4936,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/shadowrun-hong-kong---extended-edition/9N7V5R3VLMJZ", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.24618.14057715674749150.d6d6bc42-2e9e-4eb2-a96b-1baf2eaca60b.63cc5402-85b3-4a0a-9919-78cda3d9071c?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.46434.14057715674749150.c2590a77-4cfa-4f3f-9a45-cba33421b4a9.7a688afd-c22f-41c9-9862-0282eec55b6b?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.46434.14057715674749150.c2590a77-4cfa-4f3f-9a45-cba33421b4a9.7a688afd-c22f-41c9-9862-0282eec55b6b?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/shadowrun-hong-kong---extended-edition/9N7V5R3VLMJZ" }, { "gameTitle": "Shredders", @@ -4685,7 +4955,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/shredders/9N4PGNQQ7ZFK", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.59364.13979077126806036.96d207e3-0572-4ada-b872-bc0f9f1ce219.652e1b3c-1da3-4076-afc2-a639fc83ec42?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.19464.13979077126806036.fde8a9af-c12a-4674-9134-9644f5e2be50.e3ba7362-e83c-4a60-b1a0-e9af1245644d?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.19464.13979077126806036.fde8a9af-c12a-4674-9134-9644f5e2be50.e3ba7362-e83c-4a60-b1a0-e9af1245644d?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/shredders/9N4PGNQQ7ZFK" }, { "gameTitle": "Skate 3", @@ -4702,7 +4973,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/skate-3/BNKDKQXMXRR2", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.25388.68005754082254855.39795a60-73cf-4461-87d9-7f112c30c43c.7d99d88b-5b61-4951-9de7-34e5ddad1df2?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.57264.68005754082254855.39795a60-73cf-4461-87d9-7f112c30c43c.a9fe1ef9-f8df-4ac1-89c1-cbd3a5f1b852?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.57264.68005754082254855.39795a60-73cf-4461-87d9-7f112c30c43c.a9fe1ef9-f8df-4ac1-89c1-cbd3a5f1b852?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/skate-3/BNKDKQXMXRR2" }, { "gameTitle": "Skul: The Hero Slayer", @@ -4720,7 +4992,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/skul-the-hero-slayer/9NW4Z3HPJVKW", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.47199.14456124164135894.3812513e-617a-4507-a78c-e1b3d444d32a.6eb602b5-ae29-4ed6-a518-a3129440840a?w=%i&h=%i", - "gameImageUrl": "https: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%iB" + "gameImageUrl": "https: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%iB", + "storeUrl": "https://www.xbox.com/games/store/skul-the-hero-slayer/9NW4Z3HPJVKW" }, { "gameTitle": "Slay The Spire", @@ -4738,7 +5011,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/slay-the-spire/9P6W46XMDJM5", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.17795.14612220527269160.ea029917-6726-4b37-a510-8449863efad4.b02e1597-5ccb-4d20-84de-4c53b702bcbb?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.23915.14612220527269160.ea029917-6726-4b37-a510-8449863efad4.26be57ed-6cf3-48da-9c65-eb533fed3b76?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.23915.14612220527269160.ea029917-6726-4b37-a510-8449863efad4.26be57ed-6cf3-48da-9c65-eb533fed3b76?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/slay-the-spire/9P6W46XMDJM5" }, { "gameTitle": "Slime Rancher 2", @@ -4756,7 +5030,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/slime-rancher-2/9PHFJ0N31NV1", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.65089.14232893733292770.c4910fc1-e043-4370-be7c-79114ae9c0cf.d736574b-a3ed-4925-a26b-c05b56e621a5?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.56117.14232893733292770.c4910fc1-e043-4370-be7c-79114ae9c0cf.22788af6-315d-4873-a561-751d3b6e3fe7?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.56117.14232893733292770.c4910fc1-e043-4370-be7c-79114ae9c0cf.22788af6-315d-4873-a561-751d3b6e3fe7?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/slime-rancher-2/9PHFJ0N31NV1" }, { "gameTitle": "Sniper Elite 4", @@ -4774,7 +5049,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/sniper-elite-4/BZ5VLVX84STW", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.26770.64044195348567726.135f2cd2-9709-4fe7-a7ca-fefaee870959.3982bd5f-c6ad-4116-a2c1-43c1b0b3baa5?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.10484.64044195348567726.135f2cd2-9709-4fe7-a7ca-fefaee870959.df995160-2b2a-4933-bbce-7409fff225e0?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.10484.64044195348567726.135f2cd2-9709-4fe7-a7ca-fefaee870959.df995160-2b2a-4933-bbce-7409fff225e0?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/sniper-elite-4/BZ5VLVX84STW" }, { "gameTitle": "Sniper Elite 5", @@ -4792,7 +5068,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/sniper-elite-5/9PP8Q82H79LC", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.28227.14329012547000484.584f0993-bf4d-4047-854d-bac80c1f8bf8.e7de3480-7471-4d8b-8745-bd02162add7b?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.21966.14329012547000484.7cb39222-264a-4c98-a0f1-007c4e95f1e1.664b113d-5f5a-43fe-9c1e-a1fa8a1915c1?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.21966.14329012547000484.7cb39222-264a-4c98-a0f1-007c4e95f1e1.664b113d-5f5a-43fe-9c1e-a1fa8a1915c1?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/sniper-elite-5/9PP8Q82H79LC" }, { "gameTitle": "SnowRunner", @@ -4809,7 +5086,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/snowrunner/9PNRSC0J6DT8", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.55989.13956056585254053.d21b86eb-3deb-434c-9c26-3ab2103cddee.de74032c-1317-49a7-8fbb-1e6cd211985c?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.29935.13956056585254053.d21b86eb-3deb-434c-9c26-3ab2103cddee.610128c5-2a44-4875-9cfb-9a110aa2a82e?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.29935.13956056585254053.d21b86eb-3deb-434c-9c26-3ab2103cddee.610128c5-2a44-4875-9cfb-9a110aa2a82e?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/snowrunner/9PNRSC0J6DT8" }, { "gameTitle": "Solasta: Crown of the Magister", @@ -4827,7 +5105,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/solasta-crown-of-the-magister/9N1KQPLTR7S5", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.60384.13899562469464238.c1646c67-46ab-4599-8b51-491c5f064ca0.100258cb-4e28-4a7a-b0a4-66a3e0a1bd0f?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.27285.13899562469464238.e8d39ba5-ed7e-40a7-825b-f26621c5b4b7.d5c40d8a-6137-47c6-9eef-d26a584c5ec0?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.27285.13899562469464238.e8d39ba5-ed7e-40a7-825b-f26621c5b4b7.d5c40d8a-6137-47c6-9eef-d26a584c5ec0?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/solasta-crown-of-the-magister/9N1KQPLTR7S5" }, { "gameTitle": "Space Warlord Organ Trading Simulator", @@ -4845,7 +5124,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/space-warlord-organ-trading-simulator/9NVD5DB5T3HD", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.2769.14396653708129733.be3550ae-ecb9-49ec-9472-c70a3c588ca1.553ca869-878d-46a5-8efe-10b83d9aa248?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.9974.14396653708129733.be3550ae-ecb9-49ec-9472-c70a3c588ca1.65d21e51-1238-427e-9438-97aecb73bb01?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.9974.14396653708129733.be3550ae-ecb9-49ec-9472-c70a3c588ca1.65d21e51-1238-427e-9438-97aecb73bb01?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/space-warlord-organ-trading-simulator/9NVD5DB5T3HD" }, { "gameTitle": "Spacelines from the Far Out", @@ -4863,7 +5143,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/spacelines-from-the-far-out/9N23WV1HGLTQ", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.38917.13959665698666699.3d366e8c-44dc-4996-8b18-05749431b95e.4f5f537e-197a-41cd-a071-f956879553aa?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.33739.13959665698666699.3d366e8c-44dc-4996-8b18-05749431b95e.31f79e40-e0e6-43ce-886f-5355fd5aa589?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.33739.13959665698666699.3d366e8c-44dc-4996-8b18-05749431b95e.31f79e40-e0e6-43ce-886f-5355fd5aa589?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/spacelines-from-the-far-out/9N23WV1HGLTQ" }, { "gameTitle": "Spelunky 2", @@ -4881,7 +5162,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/spelunky-2/9PM85QK6C13H", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.27081.14298096177274930.caec21fb-7c68-4a6c-b169-f9b7429b0fcd.d5428b70-a412-41ed-9a2c-0b36ac91c370?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.10415.14298096177274930.caec21fb-7c68-4a6c-b169-f9b7429b0fcd.9946e755-ccd7-4438-af6f-0e63da99c4a2?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.10415.14298096177274930.caec21fb-7c68-4a6c-b169-f9b7429b0fcd.9946e755-ccd7-4438-af6f-0e63da99c4a2?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/spelunky-2/9PM85QK6C13H" }, { "gameTitle": "SpiderHeck", @@ -4899,7 +5181,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/spiderheck/9N0TRF57SMQH", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.49869.13918689285493336.0819ed4c-c94e-42c7-bd95-af9916211f52.ee71f670-1904-4520-89fe-e3946aa7f270?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.57425.13918689285493336.0819ed4c-c94e-42c7-bd95-af9916211f52.e581e622-2309-4e27-aae4-65e17506a0d1?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.57425.13918689285493336.0819ed4c-c94e-42c7-bd95-af9916211f52.e581e622-2309-4e27-aae4-65e17506a0d1?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/spiderheck/9N0TRF57SMQH" }, { "gameTitle": "Stardew Valley", @@ -4917,7 +5200,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/stardew-valley/C3D891Z6TNQM", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.49352.65985311967005000.4f51b5e9-febf-4990-8951-33ba59b634c9.aace9b9e-b001-46eb-a39b-08b1332810aa?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.46577.65985311967005000.4f51b5e9-febf-4990-8951-33ba59b634c9.53fbd86d-c51b-4aa2-86e8-b4f5a8b4e7b2?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.46577.65985311967005000.4f51b5e9-febf-4990-8951-33ba59b634c9.53fbd86d-c51b-4aa2-86e8-b4f5a8b4e7b2?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/stardew-valley/C3D891Z6TNQM" }, { "gameTitle": "State of Decay 2: Juggernaut Edition", @@ -4935,7 +5219,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/state-of-decay-2-juggernaut-edition/9NT4X7P8B9NB", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.62160.14425140369408817.14846606-f5bc-4fb1-b355-26ef6a25e847.e14fc031-2974-4b66-9f84-16cf8d0807e9?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.48341.14425140369408817.5de04141-75f8-479c-a81d-b275bdb252fc.b570e967-e2fc-48be-87dd-0b19425ffe0b?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.48341.14425140369408817.5de04141-75f8-479c-a81d-b275bdb252fc.b570e967-e2fc-48be-87dd-0b19425ffe0b?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/state-of-decay-2-juggernaut-edition/9NT4X7P8B9NB" }, { "gameTitle": "Stellaris: Console Edition", @@ -4953,7 +5238,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/stellaris-console-edition/BWL72GR7Z7GK", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.10542.71592693192229022.95f29c62-8ab9-4865-a362-219a5bf8c0d3.e1fbe4bc-1592-40a9-8545-1d76aef61a11?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.33281.71592693192229022.95f29c62-8ab9-4865-a362-219a5bf8c0d3.6375b03f-0de8-43df-aa96-a92013c301b3?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.33281.71592693192229022.95f29c62-8ab9-4865-a362-219a5bf8c0d3.6375b03f-0de8-43df-aa96-a92013c301b3?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/stellaris-console-edition/BWL72GR7Z7GK" }, { "gameTitle": "Subnautica", @@ -4971,7 +5257,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/subnautica/BX3S1Q5DVHRD", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.19794.63409341877910445.4fd452e1-c3ee-4448-a0f8-ac6eb6bdaabf.8fe60020-9cc9-42c9-af2a-bf7b08cb5e13?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.23135.63409341877910445.4fd452e1-c3ee-4448-a0f8-ac6eb6bdaabf.5a02df2f-4cea-4002-856b-2f4f478da7e9?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.23135.63409341877910445.4fd452e1-c3ee-4448-a0f8-ac6eb6bdaabf.5a02df2f-4cea-4002-856b-2f4f478da7e9?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/subnautica/BX3S1Q5DVHRD" }, { "gameTitle": "Super Mega Baseball 3", @@ -4989,7 +5276,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/super-mega-baseball-3/9NP6V9LFVJ87", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.12287.13728510900587088.c32ad4cb-c837-4a7f-ab8d-c3d9ca2cb384.15cf7c9c-94b9-441e-99f5-b58eb5e57040?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.16577.13728510900587088.c32ad4cb-c837-4a7f-ab8d-c3d9ca2cb384.c71fc5d0-f4f7-40d4-b971-7b61004c57ed?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.16577.13728510900587088.c32ad4cb-c837-4a7f-ab8d-c3d9ca2cb384.c71fc5d0-f4f7-40d4-b971-7b61004c57ed?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/super-mega-baseball-3/9NP6V9LFVJ87" }, { "gameTitle": "Superliminal", @@ -5007,7 +5295,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/superliminal/9NVR4ZQKNBSB", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.47663.14393569011623061.24d2b16b-20df-48f4-b265-623d2c0e948a.37ffa286-743f-4c55-9e7d-7c93def066a0?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.1690.14393569011623061.24d2b16b-20df-48f4-b265-623d2c0e948a.b161efbf-815b-4aee-9d82-f815731bd218?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.1690.14393569011623061.24d2b16b-20df-48f4-b265-623d2c0e948a.b161efbf-815b-4aee-9d82-f815731bd218?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/superliminal/9NVR4ZQKNBSB" }, { "gameTitle": "Supraland", @@ -5025,7 +5314,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/supraland/9PN6MTJX8LZD", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.32154.14354148193968541.017a6808-d170-40f2-a4c6-5b8716a41d7c.39a5082b-f046-4ab8-aba0-6b27aad146e2?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.65473.14354148193968541.017a6808-d170-40f2-a4c6-5b8716a41d7c.2d7a9260-047c-4444-8e71-6529e3e57aef?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.65473.14354148193968541.017a6808-d170-40f2-a4c6-5b8716a41d7c.2d7a9260-047c-4444-8e71-6529e3e57aef?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/supraland/9PN6MTJX8LZD" }, { "gameTitle": "Surgeon Simulator 2", @@ -5043,7 +5333,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/surgeon-simulator-2/9NPPK20VCTGM", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.34455.13784877875223300.82d0e530-8878-4d4f-a9e5-9c3529471840.113556c3-95a3-4c60-9063-d5a6f47cf797?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.17837.13784877875223300.82d0e530-8878-4d4f-a9e5-9c3529471840.bdce890c-f2b2-4983-ad2b-907ddd80cf0b?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.17837.13784877875223300.82d0e530-8878-4d4f-a9e5-9c3529471840.bdce890c-f2b2-4983-ad2b-907ddd80cf0b?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/surgeon-simulator-2/9NPPK20VCTGM" }, { "gameTitle": "TRANSFORMERS: CAMPOS DE BATALHA", @@ -5061,7 +5352,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/transformers-battlegrounds/9PCQRLT7C2BH", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.28464.14168906857029084.1dec8aac-a444-4171-afe3-510e35a0dfa3.4307eb30-534c-4cec-908f-9b70dd88b95a?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.20008.14168906857029084.1dec8aac-a444-4171-afe3-510e35a0dfa3.99868f35-7235-4200-9b68-f505f20283a3?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.20008.14168906857029084.1dec8aac-a444-4171-afe3-510e35a0dfa3.99868f35-7235-4200-9b68-f505f20283a3?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/transformers-campos-de-batalha/9PCQRLT7C2BH" }, { "gameTitle": "TUNIC", @@ -5078,7 +5370,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/tunic/9NLRT31Z4RWM", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.5223.13702044937897358.8701ab78-da18-4c36-8c1e-3d4e6dfd60c9.31c8ed6f-acf1-4cf2-9863-640fe319abc3?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.34105.13702044937897358.8701ab78-da18-4c36-8c1e-3d4e6dfd60c9.86f47a6b-716e-40fa-aa62-61bf6f6e102c?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.34105.13702044937897358.8701ab78-da18-4c36-8c1e-3d4e6dfd60c9.86f47a6b-716e-40fa-aa62-61bf6f6e102c?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/tunic/9NLRT31Z4RWM" }, { "gameTitle": "Tainted Grail: Conquest", @@ -5096,7 +5389,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/tainted-grail-conquest/9MZGGWHPKQ4C", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.20262.13875132150834532.ace67c6c-ec94-4b40-8c63-1fe7e6049203.ed00104f-535d-4b8a-9052-2dcaa3e702ba?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.39372.13875132150834532.ace67c6c-ec94-4b40-8c63-1fe7e6049203.ced1c496-e9e9-4389-bd6e-fbc0df5a734e?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.39372.13875132150834532.ace67c6c-ec94-4b40-8c63-1fe7e6049203.ced1c496-e9e9-4389-bd6e-fbc0df5a734e?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/tainted-grail-conquest/9MZGGWHPKQ4C" }, { "gameTitle": "Teenage Mutant Ninja Turtles: Shredder's Revenge", @@ -5113,7 +5407,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/teenage-mutant-ninja-turtles-shredder's-revenge/9NS3673HVH41", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.59000.14375592271313618.c7999e35-c8d7-49d4-b3fa-e5e1009423d7.a816f588-b6ba-46c0-8f39-54ca543455cf?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.12667.14375592271313618.8101bdfc-97e9-473f-8ca0-07fc83b1846b.84baa4ab-83cb-4dfa-b83c-baa8e9ee8bba?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.12667.14375592271313618.8101bdfc-97e9-473f-8ca0-07fc83b1846b.84baa4ab-83cb-4dfa-b83c-baa8e9ee8bba?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/teenage-mutant-ninja-turtles-shredder's-revenge/9NS3673HVH41" }, { "gameTitle": "Tell Me Why: Cap\u00edtulo 1-3", @@ -5130,7 +5425,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/tell-me-why-chapters-1-3/9NF83PRZK6K3", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.56500.13599353568798630.567fc0f9-a81e-456c-a9ee-55bb0bb153b5.a110b76d-abae-4dd7-a578-a796ea66ff53?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.767.13599353568798630.567fc0f9-a81e-456c-a9ee-55bb0bb153b5.9160630f-b7b8-470d-a39f-8d36788ec893?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.767.13599353568798630.567fc0f9-a81e-456c-a9ee-55bb0bb153b5.9160630f-b7b8-470d-a39f-8d36788ec893?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/tell-me-why-cap%C3%ADtulo-1-3/9NF83PRZK6K3" }, { "gameTitle": "Telling Lies", @@ -5147,7 +5443,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/telling-lies/9NLHWTCWLKGX", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.9486.13711287244755811.601b477c-0175-48da-8585-ae8d926ee15d.6d1bc680-0946-4ac2-a288-84ab77630eed?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.53430.13711287244755811.601b477c-0175-48da-8585-ae8d926ee15d.b6c23b53-a203-4b86-a4ce-897bad0b5e35?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.53430.13711287244755811.601b477c-0175-48da-8585-ae8d926ee15d.b6c23b53-a203-4b86-a4ce-897bad0b5e35?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/telling-lies/9NLHWTCWLKGX" }, { "gameTitle": "Terraria", @@ -5165,7 +5462,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/terraria/BTNPS60N3114", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.57835.70406876433810089.4beffaca-3fee-4154-a21f-ecd9b3bedbb3.c2203645-e73c-4760-bdbe-f1bcf32a0a05?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.15385.70406876433810089.4beffaca-3fee-4154-a21f-ecd9b3bedbb3.14eef101-5fe5-4892-bc4f-c290d9d50d7c?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.15385.70406876433810089.4beffaca-3fee-4154-a21f-ecd9b3bedbb3.14eef101-5fe5-4892-bc4f-c290d9d50d7c?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/terraria/BTNPS60N3114" }, { "gameTitle": "The Anacrusis (Pr\u00e9via do Jogo)", @@ -5183,7 +5481,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/the-anacrusis-game-preview/9P9S593SLMV7", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.51812.14132627781219400.b75eb479-8d85-476a-9b12-d9044cad7c6e.6e935896-30f8-4e35-8a8c-c807747adc55?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.51176.14132627781219400.e2eafad1-9336-41a2-a8bc-d64f901c1136.89ce799a-9fb2-46ae-afb2-1647846e6252?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.51176.14132627781219400.e2eafad1-9336-41a2-a8bc-d64f901c1136.89ce799a-9fb2-46ae-afb2-1647846e6252?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/the-anacrusis-pr%C3%A9via-do-jogo/9P9S593SLMV7" }, { "gameTitle": "The Ascent", @@ -5201,7 +5500,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/the-ascent/C27QL5JBKQ8M", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.31847.65332188737297236.e956bc32-e423-4920-b547-86181e7ed68d.75126036-bcfe-471a-80ff-394c854dd7d2?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.36256.65332188737297236.e956bc32-e423-4920-b547-86181e7ed68d.eaa95a80-a4c4-4c13-92c8-ff26e9da1314?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.36256.65332188737297236.e956bc32-e423-4920-b547-86181e7ed68d.eaa95a80-a4c4-4c13-92c8-ff26e9da1314?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/the-ascent/C27QL5JBKQ8M" }, { "gameTitle": "The Bard's Tale ARPG : Remastered and Resnarkled", @@ -5219,7 +5519,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/the-bard's-tale-arpg-remastered-and-resnarkled/9PN3VDFTB5HZ", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.44758.14351919773829236.17768c0e-ff0d-4fe7-86a5-a0cdd0bfe3a6.697c7bb1-b26f-4759-a90b-d2dbac5e5b2e?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.18671.14351919773829236.17768c0e-ff0d-4fe7-86a5-a0cdd0bfe3a6.42dffd5c-f70e-4af8-9323-7c725c28badb?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.18671.14351919773829236.17768c0e-ff0d-4fe7-86a5-a0cdd0bfe3a6.42dffd5c-f70e-4af8-9323-7c725c28badb?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/the-bard's-tale-arpg-remastered-and-resnarkled/9PN3VDFTB5HZ" }, { "gameTitle": "The Bard's Tale IV: Director's Cut", @@ -5237,7 +5538,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/the-bard's-tale-iv-director's-cut/C2B4T86TXLRS", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.34604.65351109767529701.defb4d0d-acab-4fd9-8208-7283068f991e.34d0241a-bbac-43d8-8e46-541283f89936?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.59914.65351109767529701.defb4d0d-acab-4fd9-8208-7283068f991e.b1a96c89-6ec6-4529-bce6-847b80bce632?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.59914.65351109767529701.defb4d0d-acab-4fd9-8208-7283068f991e.b1a96c89-6ec6-4529-bce6-847b80bce632?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/the-bard's-tale-iv-director's-cut/C2B4T86TXLRS" }, { "gameTitle": "The Bard's Tale Trilogy", @@ -5255,7 +5557,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/the-bard's-tale-trilogy/9MVN4ND41DD3", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.58193.13855942306543540.f07392fd-5f64-460d-82f5-27790455d1e0.be4aa1b8-dc12-4784-9111-96d6c245d360?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.59104.13855942306543540.f07392fd-5f64-460d-82f5-27790455d1e0.3501f74c-cb28-4bc9-bbf5-04ed2c308e5d?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.59104.13855942306543540.f07392fd-5f64-460d-82f5-27790455d1e0.3501f74c-cb28-4bc9-bbf5-04ed2c308e5d?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/the-bard's-tale-trilogy/9MVN4ND41DD3" }, { "gameTitle": "The Dungeon Of Naheulbeuk: The Amulet Of Chaos - Chicken Edition", @@ -5273,7 +5576,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/the-dungeon-of-naheulbeuk-the-amulet-of-chaos---ch/9MT8HTJC4GSB", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.45055.13817077164703749.cd543429-7cae-4721-ab65-6ad0bd406b04.59c45932-b890-4f8a-8e25-c99672f1df24?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.64340.13817077164703749.cd543429-7cae-4721-ab65-6ad0bd406b04.1c008e07-0a79-4062-843b-9d1f0ee2e6c7?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.64340.13817077164703749.cd543429-7cae-4721-ab65-6ad0bd406b04.1c008e07-0a79-4062-843b-9d1f0ee2e6c7?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/the-dungeon-of-naheulbeuk-the-amulet-of-chaos---ch/9MT8HTJC4GSB" }, { "gameTitle": "The Elder Scrolls III: Morrowind", @@ -5290,7 +5594,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/the-elder-scrolls-iii-morrowind/BXVCFBJBNS17", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.23519.63316511565903586.d62160f8-6032-426e-af13-d87fe2d204a7.22bb08a7-a717-490d-8d63-036a3db4dc92?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.44690.63316511565903586.d62160f8-6032-426e-af13-d87fe2d204a7.eea1eec7-7361-48c9-bbce-ac54d9d26b50?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.44690.63316511565903586.d62160f8-6032-426e-af13-d87fe2d204a7.eea1eec7-7361-48c9-bbce-ac54d9d26b50?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/the-elder-scrolls-iii-morrowind/BXVCFBJBNS17" }, { "gameTitle": "The Elder Scrolls V: Skyrim Special Edition", @@ -5307,7 +5612,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/the-elder-scrolls-v-skyrim-special-edition/BQ1W1T1FC14W", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.4794.68326442227858632.03782b23-7f26-4a8e-ba87-177bdf2c3c90.b156af1e-9796-48af-8d11-3461727280ea?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.62159.68326442227858632.03782b23-7f26-4a8e-ba87-177bdf2c3c90.1405eb3a-6314-4e44-a822-7660d70a6ec5?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.62159.68326442227858632.03782b23-7f26-4a8e-ba87-177bdf2c3c90.1405eb3a-6314-4e44-a822-7660d70a6ec5?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/the-elder-scrolls-v-skyrim-special-edition/BQ1W1T1FC14W" }, { "gameTitle": "The Evil Within", @@ -5324,7 +5630,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/the-evil-within/C2M8HBNVPT1T", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.49736.65523398993639028.2c280ccc-7f03-4d25-8060-07f62a42af2f.f6c60388-390b-428f-8206-af048885200c?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.21330.65523398993639028.2c280ccc-7f03-4d25-8060-07f62a42af2f.bb372e99-a65a-408c-a4c5-08c63fe35051?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.21330.65523398993639028.2c280ccc-7f03-4d25-8060-07f62a42af2f.bb372e99-a65a-408c-a4c5-08c63fe35051?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/the-evil-within/C2M8HBNVPT1T" }, { "gameTitle": "The Evil Within\u00ae 2", @@ -5341,7 +5648,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/the-evil-within-2/C40860J5R2MP", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.54557.66902085872217864.df676289-5ef8-4c7c-8533-965928392024.79369858-479b-4542-991a-cfffd2af454b?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.10235.66902085872217864.df676289-5ef8-4c7c-8533-965928392024.db6ff62f-dadd-41bf-916b-5738e03b9b63?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.10235.66902085872217864.df676289-5ef8-4c7c-8533-965928392024.db6ff62f-dadd-41bf-916b-5738e03b9b63?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/the-evil-within-2/C40860J5R2MP" }, { "gameTitle": "The Forgotten City", @@ -5359,7 +5667,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/the-forgotten-city/9NJ4R763M7TH", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.53062.13683273960215638.5923ef51-2df1-4d4f-9d97-d8e9f37aa547.b48a871c-2640-4e5b-affe-490618dd2db1?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.54681.13683273960215638.5923ef51-2df1-4d4f-9d97-d8e9f37aa547.cff96ae2-adec-4b67-8ec6-89f368af6abf?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.54681.13683273960215638.5923ef51-2df1-4d4f-9d97-d8e9f37aa547.cff96ae2-adec-4b67-8ec6-89f368af6abf?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/the-forgotten-city/9NJ4R763M7TH" }, { "gameTitle": "The Gunk", @@ -5377,7 +5686,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/the-gunk/9P008L2LS87F", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.1452.14466083566107896.f1b98327-0240-4097-b759-cc5bd89ee66e.5da87010-64a5-4dfb-9396-5e88d1630886?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.58106.14466083566107896.f1b98327-0240-4097-b759-cc5bd89ee66e.5fab2823-b931-4d24-bf6d-46d16533da2e?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.58106.14466083566107896.f1b98327-0240-4097-b759-cc5bd89ee66e.5fab2823-b931-4d24-bf6d-46d16533da2e?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/the-gunk/9P008L2LS87F" }, { "gameTitle": "The Last Kids on Earth and the Staff of Doom", @@ -5395,7 +5705,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/the-last-kids-on-earth-and-the-staff-of-doom/9NQTJK43NCQJ", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.20735.13762649903394503.ccafcc44-7c4b-4fc6-9462-a3fcec235b79.34e55ab3-802e-4a09-9227-b44fc192e5b4?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.42017.13762649903394503.ab6e32ef-5ac4-49a8-8d5d-4893cabe8968.80520e05-0c7f-4e26-b1c9-f3b067712b04?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.42017.13762649903394503.ab6e32ef-5ac4-49a8-8d5d-4893cabe8968.80520e05-0c7f-4e26-b1c9-f3b067712b04?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/the-last-kids-on-earth-and-the-staff-of-doom/9NQTJK43NCQJ" }, { "gameTitle": "The Long Dark", @@ -5413,7 +5724,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/the-long-dark/C41ZDFQ82M1G", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.6991.66934420265726607.e7f79b00-768c-452b-bd03-0eb82296f498.5f5892b3-2241-4b20-835e-27ae0eaf7796?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.45412.66934420265726607.e7f79b00-768c-452b-bd03-0eb82296f498.96a38100-1f0c-4441-9a64-c6fb4289d989?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.45412.66934420265726607.e7f79b00-768c-452b-bd03-0eb82296f498.96a38100-1f0c-4441-9a64-c6fb4289d989?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/the-long-dark/C41ZDFQ82M1G" }, { "gameTitle": "The Outer Worlds", @@ -5431,7 +5743,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/the-outer-worlds/BVTKN6CQ8W5F", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.41558.71127714305215144.dfbe21c8-4e10-4861-b737-47393066d41d.a5829bf5-54b9-4e0f-b7a3-3772539dd491?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.60817.71127714305215144.dfbe21c8-4e10-4861-b737-47393066d41d.cc6b6839-fb14-421b-814c-898b8e58a716?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.60817.71127714305215144.dfbe21c8-4e10-4861-b737-47393066d41d.cc6b6839-fb14-421b-814c-898b8e58a716?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/the-outer-worlds/BVTKN6CQ8W5F" }, { "gameTitle": "The Pedestrian", @@ -5449,7 +5762,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/the-pedestrian/9NTX07HR22TG", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.18714.14405641539368739.40cb973b-02de-48e6-af90-2792c037b42e.c3d93b01-fabd-4445-8d65-9c741af2fe80?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.3542.14405641539368739.40cb973b-02de-48e6-af90-2792c037b42e.d535cfae-b8c0-405c-b347-ba0f40b3a182?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.3542.14405641539368739.40cb973b-02de-48e6-af90-2792c037b42e.d535cfae-b8c0-405c-b347-ba0f40b3a182?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/the-pedestrian/9NTX07HR22TG" }, { "gameTitle": "The Riftbreaker", @@ -5467,25 +5781,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/the-riftbreaker/9P94PCKP864B", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.14415.14074927307991469.b436fff7-157c-4e97-b957-11e9d6f0e0eb.4690e1cb-fa16-4030-abd9-583e75be3c9d?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.28933.14074927307991469.b436fff7-157c-4e97-b957-11e9d6f0e0eb.76ec1461-a7c0-4a88-8dad-1884d00d1759?h=%i&format=jpg" - }, - { - "gameTitle": "The Sims\u2122 4", - "gamePublisher": "Electronic Arts", - "gameDeveloper": "Maxis & Blind Squirrel", - "gameGenres": [ - "Simula\u00e7\u00e3o", - "Estrat\u00e9gia" - ], - "releaseDate": "16/11/2017", - "extraGameProperties": { - "isInGamePass": true, - "controllerSupport": false, - "touchControllerSupport": false - }, - "xcloudUrl": "https://www.xbox.com/%s/play/games/the-sims-4/C08JXNK0VG5L", - "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.13730.64737940845214615.82a9a5cd-32c5-4fb1-a951-2a7b976ad460.fce0797b-8705-47da-839a-a21383f93eb7?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.38000.64737940845214615.82a9a5cd-32c5-4fb1-a951-2a7b976ad460.060f4158-09ee-46e3-a827-5b21668fa365?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.28933.14074927307991469.b436fff7-157c-4e97-b957-11e9d6f0e0eb.76ec1461-a7c0-4a88-8dad-1884d00d1759?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/the-riftbreaker/9P94PCKP864B" }, { "gameTitle": "The Walking Dead: A New Frontier - The Complete Season (Episodes 1-5)", @@ -5502,7 +5799,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/the-walking-dead-a-new-frontier---the-complete-sea/BQR7QS0F8SJ3", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.25445.68746382496567220.612ba4aa-3f7b-4b25-b141-a20112197dde.672c59e8-ed5c-4277-b00b-62c66d6d6c51?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.51573.68746382496567220.612ba4aa-3f7b-4b25-b141-a20112197dde.0e3a2b14-f6c8-4538-972d-7b02e3c30134?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.51573.68746382496567220.612ba4aa-3f7b-4b25-b141-a20112197dde.0e3a2b14-f6c8-4538-972d-7b02e3c30134?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/the-walking-dead-a-new-frontier---the-complete-sea/BQR7QS0F8SJ3" }, { "gameTitle": "The Walking Dead: Michonne - The Complete Season", @@ -5519,7 +5817,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/the-walking-dead-michonne---the-complete-season/C2XNJC9WK15X", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.21725.66252839971129113.8f5f5ae5-f77d-4f3c-8388-3b220332b617.4c26174a-a955-4310-b9fc-fb9e561f7a9c?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.44390.66252839971129113.8f5f5ae5-f77d-4f3c-8388-3b220332b617.e2d2592d-3847-49a5-8158-a887da363ef6?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.44390.66252839971129113.8f5f5ae5-f77d-4f3c-8388-3b220332b617.e2d2592d-3847-49a5-8158-a887da363ef6?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/the-walking-dead-michonne---the-complete-season/C2XNJC9WK15X" }, { "gameTitle": "The Walking Dead: Season Two", @@ -5536,7 +5835,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/the-walking-dead-season-two/C2DQXX0CB42F", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.34948.65440315593285086.25acafbc-307e-448a-a7f5-999e7cc0c672.7c50a8dd-9a0b-4209-b5bf-a34ad0c24366?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.21436.65440315593285086.25acafbc-307e-448a-a7f5-999e7cc0c672.e5b18b09-7761-4c13-ab1a-b7a3ffcfa08c?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.21436.65440315593285086.25acafbc-307e-448a-a7f5-999e7cc0c672.e5b18b09-7761-4c13-ab1a-b7a3ffcfa08c?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/the-walking-dead-season-two/C2DQXX0CB42F" }, { "gameTitle": "The Walking Dead: The Complete First Season", @@ -5553,7 +5853,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/the-walking-dead-the-complete-first-season/BW6B077FCH11", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.64194.71901737879009236.c4798d79-4139-4e57-bb07-d252b6ca567c.10c48ea9-4aa3-4672-b9f7-ac8087d4526f?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.7774.71901737879009236.c4798d79-4139-4e57-bb07-d252b6ca567c.feb448b1-e5ea-4764-81f2-151d898e13ca?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.7774.71901737879009236.c4798d79-4139-4e57-bb07-d252b6ca567c.feb448b1-e5ea-4764-81f2-151d898e13ca?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/the-walking-dead-the-complete-first-season/BW6B077FCH11" }, { "gameTitle": "This War of Mine: Final Cut", @@ -5570,7 +5871,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/this-war-of-mine-final-cut/9MT6TG9CXR2H", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.37303.13818178861591472.06d4cfd1-e581-4b7f-8268-7ed2cfca3f35.cd9123c5-f36e-4501-bf53-082666b3fa48?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.1709.13818178861591472.06d4cfd1-e581-4b7f-8268-7ed2cfca3f35.a8145a5b-1d4d-43f1-a537-9ebc0209a9c8?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.1709.13818178861591472.06d4cfd1-e581-4b7f-8268-7ed2cfca3f35.a8145a5b-1d4d-43f1-a537-9ebc0209a9c8?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/this-war-of-mine-final-cut/9MT6TG9CXR2H" }, { "gameTitle": "Tinykin", @@ -5588,7 +5890,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/tinykin/9NLLP82XVSKH", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.41283.13705408154411770.7cc771bf-fa30-454c-bfd5-e554674c2e74.79981d13-6d87-4215-8e1d-be83b443ed89?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.15256.13705408154411770.7cc771bf-fa30-454c-bfd5-e554674c2e74.ae4b9c15-0c98-4d2b-b049-b20992dc99f9?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.15256.13705408154411770.7cc771bf-fa30-454c-bfd5-e554674c2e74.ae4b9c15-0c98-4d2b-b049-b20992dc99f9?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/tinykin/9NLLP82XVSKH" }, { "gameTitle": "Tom Clancy's Rainbow Six\u00ae Siege Deluxe Edition", @@ -5605,7 +5908,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/tom-clancy's-rainbow-six-siege-deluxe-edition/9NSHNMCM0JR8", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.3515.14367438179754989.c0279dfe-426b-4a31-84c2-3cf57fd07773.462a3a44-858b-480a-90ef-7a3cbc9b28c2?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.35709.14367438179754989.c0279dfe-426b-4a31-84c2-3cf57fd07773.3b0725c3-8d64-42b3-9245-58d5617ec956?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.35709.14367438179754989.c0279dfe-426b-4a31-84c2-3cf57fd07773.3b0725c3-8d64-42b3-9245-58d5617ec956?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/tom-clancy's-rainbow-six-siege-deluxe-edition/9NSHNMCM0JR8" }, { "gameTitle": "Tom Clancy\u2019s Ghost Recon\u00ae Wildlands - Standard Edition", @@ -5622,7 +5926,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/tom-clancy%E2%80%99s-ghost-recon-wildlands---standard-edit/C2N9CS4FS1QR", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.35914.65577870102127192.24a0a154-ded1-4a40-a91f-102019aaee70.04f5f3e1-2dd4-4cfb-b1e6-add402749f0a?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.27896.65577870102127192.24a0a154-ded1-4a40-a91f-102019aaee70.a64b3aea-f6fc-4b1c-a933-7ee068590864?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.27896.65577870102127192.24a0a154-ded1-4a40-a91f-102019aaee70.a64b3aea-f6fc-4b1c-a933-7ee068590864?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/tom-clancy%E2%80%99s-ghost-recon-wildlands---standard-edit/C2N9CS4FS1QR" }, { "gameTitle": "Tom Clancy\u2019s Rainbow Six\u00ae Extraction", @@ -5640,7 +5945,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/tom-clancy%E2%80%99s-rainbow-six-extraction/BXRB4ZH2GJHK", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.12410.63231504676176196.fce3b959-5f54-4aad-a199-00e19cf052ba.c309e2ab-1f04-4a32-8afc-381df080bb57?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.50084.63231504676176196.fce3b959-5f54-4aad-a199-00e19cf052ba.0fbf2fa3-423b-4ffc-8e42-a8e8360287b3?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.50084.63231504676176196.fce3b959-5f54-4aad-a199-00e19cf052ba.0fbf2fa3-423b-4ffc-8e42-a8e8360287b3?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/tom-clancy%E2%80%99s-rainbow-six-extraction/BXRB4ZH2GJHK" }, { "gameTitle": "Torment: Tides of Numenera", @@ -5658,7 +5964,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/torment-tides-of-numenera/BQND4NQXFFV2", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.60839.69228847133651133.1a071f35-fd99-4884-ae4a-12f55849b9eb.8fd399bb-4620-497a-939c-722938a7b901?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.55786.69228847133651133.1a071f35-fd99-4884-ae4a-12f55849b9eb.02990022-0a33-4cef-996f-2254a0216e0e?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.55786.69228847133651133.1a071f35-fd99-4884-ae4a-12f55849b9eb.02990022-0a33-4cef-996f-2254a0216e0e?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/torment-tides-of-numenera/BQND4NQXFFV2" }, { "gameTitle": "Totally Accurate Battle Simulator", @@ -5676,7 +5983,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/totally-accurate-battle-simulator/9PC4RWP34M2D", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.25383.14176345306313891.79ca8837-5397-4838-85b6-4a8a9720856c.db23320a-e9f6-4ed3-87e5-db4a5e82a6fc?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.8372.14176345306313891.79ca8837-5397-4838-85b6-4a8a9720856c.8d4e1080-09b7-4a26-aafa-58c34e4ebb7e?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.8372.14176345306313891.79ca8837-5397-4838-85b6-4a8a9720856c.8d4e1080-09b7-4a26-aafa-58c34e4ebb7e?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/totally-accurate-battle-simulator/9PC4RWP34M2D" }, { "gameTitle": "Totally Reliable Delivery Service", @@ -5694,7 +6002,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/totally-reliable-delivery-service/9NZG72SH3H4W", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.57565.14481391283536320.2e278a9d-b63d-454a-a60e-ac81b25b445c.392440ba-2841-42da-9eae-3624c032300b?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.56378.14481391283536320.2e278a9d-b63d-454a-a60e-ac81b25b445c.74cc5596-f1c5-4d33-8819-fc4fe7907982?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.56378.14481391283536320.2e278a9d-b63d-454a-a60e-ac81b25b445c.74cc5596-f1c5-4d33-8819-fc4fe7907982?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/totally-reliable-delivery-service/9NZG72SH3H4W" }, { "gameTitle": "Townscaper", @@ -5712,7 +6021,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/townscaper/9NFM39PSFXJD", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.47144.13596818197886835.587a1f17-af5b-48c5-acec-b287c3694c3b.f9e5ab95-f8bc-437e-917a-c38200963ac4?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.54762.13596818197886835.587a1f17-af5b-48c5-acec-b287c3694c3b.a0c7c160-9ebb-47d9-8c3a-0c5cd66c6e9c?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.54762.13596818197886835.587a1f17-af5b-48c5-acec-b287c3694c3b.a0c7c160-9ebb-47d9-8c3a-0c5cd66c6e9c?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/townscaper/9NFM39PSFXJD" }, { "gameTitle": "Trailmakers", @@ -5730,7 +6040,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/trailmakers/9NSFGM8J6MBJ", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.4351.14364758607471359.e2225a2a-e6f7-44b1-a6a4-afd25f220f1c.17b9e5c5-fee2-401c-b74d-45d15133de94?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.41211.14364758607471359.e2225a2a-e6f7-44b1-a6a4-afd25f220f1c.744732a9-9341-4c4d-90ab-347251ab553f?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.41211.14364758607471359.e2225a2a-e6f7-44b1-a6a4-afd25f220f1c.744732a9-9341-4c4d-90ab-347251ab553f?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/trailmakers/9NSFGM8J6MBJ" }, { "gameTitle": "Train Sim World\u00ae 3: Standard Edition", @@ -5747,7 +6058,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/train-sim-world-3-standard-edition/9PN99PX1P1LX", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.32810.13824994608911844.30135c6c-1c23-48e7-9923-7dd883c953d1.9a8b0171-e7a4-4598-a31d-df29e31f7bbf?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.9997.13824994608911844.30135c6c-1c23-48e7-9923-7dd883c953d1.f89e5d43-1995-4aae-a812-365456f24cac?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.9997.13824994608911844.30135c6c-1c23-48e7-9923-7dd883c953d1.f89e5d43-1995-4aae-a812-365456f24cac?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/train-sim-world-3-standard-edition/9PN99PX1P1LX" }, { "gameTitle": "Trek to Yomi", @@ -5765,7 +6077,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/trek-to-yomi/9MTCRVZQN3GV", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.109.13810431892468749.e5f7414c-2e05-4304-bb90-5df4b5221508.1f107c06-f879-4933-b58c-1a5dd881b421?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.14387.13810431892468749.e5f7414c-2e05-4304-bb90-5df4b5221508.f44bc585-93ed-428b-80e5-d5512e138cdc?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.14387.13810431892468749.e5f7414c-2e05-4304-bb90-5df4b5221508.f44bc585-93ed-428b-80e5-d5512e138cdc?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/trek-to-yomi/9MTCRVZQN3GV" }, { "gameTitle": "Tropico 6", @@ -5783,7 +6096,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/tropico-6/C4KBHNHRPLN6", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.55829.66702598861173481.ab28a26d-e732-407f-b1fc-11b3cc0e41c0.04387f94-cdc6-4402-a538-4c0f0cb4049f?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.40705.66702598861173481.ab28a26d-e732-407f-b1fc-11b3cc0e41c0.b11d7c8c-dc21-40d5-92e3-cf5c6186dc9b?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.40705.66702598861173481.ab28a26d-e732-407f-b1fc-11b3cc0e41c0.b11d7c8c-dc21-40d5-92e3-cf5c6186dc9b?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/tropico-6/C4KBHNHRPLN6" }, { "gameTitle": "Turbo Golf Racing (Game Preview)", @@ -5801,7 +6115,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/turbo-golf-racing-game-preview/9N6781PMXC02", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.8752.14023533452078841.747fa65d-a94d-4613-a65d-e170645a3c1f.4ec3d3fd-6b93-4f06-827b-de4cf2a1f042?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.11425.14023533452078841.747fa65d-a94d-4613-a65d-e170645a3c1f.7d23a9fc-be55-4462-976c-96c849f401b9?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.11425.14023533452078841.747fa65d-a94d-4613-a65d-e170645a3c1f.7d23a9fc-be55-4462-976c-96c849f401b9?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/turbo-golf-racing-game-preview/9N6781PMXC02" }, { "gameTitle": "Turnip Boy Commits Tax Evasion", @@ -5819,7 +6134,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/turnip-boy-commits-tax-evasion/9N0T8V0R7MBC", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.28759.13918938342247004.3a4e9214-ba82-4550-b1da-17c3eefbdfa4.a7fff141-6ce1-4395-91f5-8d4f8924404d?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.24911.13918938342247004.3a4e9214-ba82-4550-b1da-17c3eefbdfa4.3640c62d-df2c-42fc-a4a2-5d18ec92cfaf?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.24911.13918938342247004.3a4e9214-ba82-4550-b1da-17c3eefbdfa4.3640c62d-df2c-42fc-a4a2-5d18ec92cfaf?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/turnip-boy-commits-tax-evasion/9N0T8V0R7MBC" }, { "gameTitle": "Two Point Campus", @@ -5837,7 +6153,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/two-point-campus/9PCW1SMN9RGG", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.46969.14161945646118465.4c1e1eb1-a1ec-49c5-b06d-8386c15bcbf3.6b016067-8e4a-4985-b34e-1704a4fed711?w=%i&h=%i", - "gameImageUrl": "https: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%iB" + "gameImageUrl": "https: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%iB", + "storeUrl": "https://www.xbox.com/games/store/two-point-campus/9PCW1SMN9RGG" }, { "gameTitle": "Umurangi Generation Special Edition", @@ -5854,7 +6171,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/umurangi-generation-special-edition/9PKLF2W8J0TF", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.13391.14260645465200380.af962a53-8815-4214-9dc3-7e92e8adec2b.66e92f9c-1ebb-422c-ac21-b4eaac54bd52?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.43834.14260645465200380.af962a53-8815-4214-9dc3-7e92e8adec2b.3aecb4f6-e278-4387-b2ae-3d654b5ce62c?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.43834.14260645465200380.af962a53-8815-4214-9dc3-7e92e8adec2b.3aecb4f6-e278-4387-b2ae-3d654b5ce62c?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/umurangi-generation-special-edition/9PKLF2W8J0TF" }, { "gameTitle": "Undertale", @@ -5871,7 +6189,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/undertale/9PJGGX9XJXPB", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.15028.14216942822196343.dfa45b94-960e-4595-b2be-f54c2f268b7a.1e441b9e-11a6-45a5-8d5c-2d563a19439a?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.31988.14216942822196343.dfa45b94-960e-4595-b2be-f54c2f268b7a.1e119400-e116-4a10-a916-1160bdd981a5?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.31988.14216942822196343.dfa45b94-960e-4595-b2be-f54c2f268b7a.1e119400-e116-4a10-a916-1160bdd981a5?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/undertale/9PJGGX9XJXPB" }, { "gameTitle": "Undungeon", @@ -5889,7 +6208,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/undungeon/9N55W5HG0DSG", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.21160.13969309302998441.31cbae08-c7d3-436f-b6a4-9ef04acee0f9.b0a90bd0-77b3-45b1-84fe-2dfb49131365?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.26421.13969309302998441.31cbae08-c7d3-436f-b6a4-9ef04acee0f9.b75f7f94-a229-4b9d-8723-58a9f189aa10?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.26421.13969309302998441.31cbae08-c7d3-436f-b6a4-9ef04acee0f9.b75f7f94-a229-4b9d-8723-58a9f189aa10?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/undungeon/9N55W5HG0DSG" }, { "gameTitle": "Unpacking", @@ -5907,7 +6227,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/unpacking/9NH5HN11FG4M", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.1461.13636460453065260.a236863a-02a2-47fd-bfee-b7b301312a6e.adcf4c68-73b9-45a5-9304-0c3d43be83f8?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.13051.13636460453065260.ecf51b77-0a2c-413e-97f7-3aacd9282ab3.dd5a85c1-2cf9-4128-850a-e931036fb1b6?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.13051.13636460453065260.ecf51b77-0a2c-413e-97f7-3aacd9282ab3.dd5a85c1-2cf9-4128-850a-e931036fb1b6?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/unpacking/9NH5HN11FG4M" }, { "gameTitle": "Unravel Two", @@ -5924,7 +6245,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/unravel-two/C4VKLMG1HLZW", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.6886.67435278791875206.d60b3a6b-61b2-4afb-9c4c-453efe4ef48e.5851cf69-55b2-4383-a019-fb601fb993db?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.14989.67435278791875206.d60b3a6b-61b2-4afb-9c4c-453efe4ef48e.5e1c0d2f-eb8d-4d17-9b6f-78e60406e303?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.14989.67435278791875206.d60b3a6b-61b2-4afb-9c4c-453efe4ef48e.5e1c0d2f-eb8d-4d17-9b6f-78e60406e303?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/unravel-two/C4VKLMG1HLZW" }, { "gameTitle": "Unsouled", @@ -5941,7 +6263,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/unsouled/9N7KBCL0NC5H", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.34215.14067847727673942.bc35e2b5-e9f7-46d2-88a7-ec8582f969a9.872121c0-6e54-4b4d-bfca-e00302c1a246?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.49381.14067847727673942.0fb11748-9210-454a-9fa8-46519e6e34f4.60602cb3-9f1e-488e-b1f7-cbdec4a850a2?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.49381.14067847727673942.0fb11748-9210-454a-9fa8-46519e6e34f4.60602cb3-9f1e-488e-b1f7-cbdec4a850a2?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/unsouled/9N7KBCL0NC5H" }, { "gameTitle": "Viva Pi\u00f1ata: TIP", @@ -5958,7 +6281,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/viva-pi%C3%B1ata-tip/BS1NPTPJGD4G", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.65381.69467662407886849.eb318d40-1e77-4848-b633-b9ee445d2f63.2bb50256-bcc1-477e-8fd6-4780b64a6cc0?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.22237.69467662407886849.eb318d40-1e77-4848-b633-b9ee445d2f63.027e79d7-0592-4087-9b54-7c795ea9fc02?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.22237.69467662407886849.eb318d40-1e77-4848-b633-b9ee445d2f63.027e79d7-0592-4087-9b54-7c795ea9fc02?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/viva-pi%C3%B1ata-tip/BS1NPTPJGD4G" }, { "gameTitle": "Warhammer 40,000: Battlesector", @@ -5975,7 +6299,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/warhammer-40000-battlesector/9P4FCZR21QQK", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.26109.14590233302827538.70136681-c41b-42f8-a975-a9edb5e9d3f3.c591cd02-9837-4fe4-99a1-42b90cfba64e?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.5032.14590233302827538.76c8df10-a5c4-4247-823c-21735ffe3473.673d847e-c6f8-4786-803c-3ee7f13f4219?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.5032.14590233302827538.76c8df10-a5c4-4247-823c-21735ffe3473.673d847e-c6f8-4786-803c-3ee7f13f4219?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/warhammer-40000-battlesector/9P4FCZR21QQK" }, { "gameTitle": "Wasteland 2: Director's Cut", @@ -5993,7 +6318,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/wasteland-2-director's-cut/C521HDXRTS7F", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.44620.13602252643452986.79361d33-7a18-4554-8a50-66b60d3712e6.7ed73918-7955-45fe-9456-d1fe66a57a9e?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.1978.13602252643452986.79361d33-7a18-4554-8a50-66b60d3712e6.74ed384a-6901-47e0-a185-e8be46be306c?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.1978.13602252643452986.79361d33-7a18-4554-8a50-66b60d3712e6.74ed384a-6901-47e0-a185-e8be46be306c?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/wasteland-2-director's-cut/C521HDXRTS7F" }, { "gameTitle": "Wasteland 3", @@ -6010,7 +6336,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/wasteland-3/BQ9T0JF0D3L4", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.31983.69010346493633739.074410cb-38ab-4f48-b6fe-0ffa69c89fa9.b1e9bf9f-f41e-4384-9a25-748d0b18fedd?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.5558.69010346493633739.074410cb-38ab-4f48-b6fe-0ffa69c89fa9.6fbe0426-d9be-4472-bfad-0344480efbb8?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.5558.69010346493633739.074410cb-38ab-4f48-b6fe-0ffa69c89fa9.6fbe0426-d9be-4472-bfad-0344480efbb8?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/wasteland-3/BQ9T0JF0D3L4" }, { "gameTitle": "Wasteland Remastered", @@ -6028,7 +6355,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/wasteland-remastered/9NGH1FK0RJGL", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.33255.13650100416089145.e9c63102-735a-40a7-b414-10693b469ff1.9d33c3ba-38af-4676-93e6-282f0280d212?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.60150.13650100416089145.e9c63102-735a-40a7-b414-10693b469ff1.bd9c07a7-be22-4688-89db-b2a8a38df68d?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.60150.13650100416089145.e9c63102-735a-40a7-b414-10693b469ff1.bd9c07a7-be22-4688-89db-b2a8a38df68d?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/wasteland-remastered/9NGH1FK0RJGL" }, { "gameTitle": "Watch Dogs\u00ae2", @@ -6045,7 +6373,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/watch-dogs2/BSXLFN5QQZSC", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.15364.69997608528322872.06dc9610-5c4e-484e-b028-58ad215e637a.ab2ff32b-6ec5-40b7-9492-471c12708bf0?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.38484.69997608528322872.06dc9610-5c4e-484e-b028-58ad215e637a.29a8afc9-c3c7-4b3d-8e9f-f1b2858db4f8?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.38484.69997608528322872.06dc9610-5c4e-484e-b028-58ad215e637a.29a8afc9-c3c7-4b3d-8e9f-f1b2858db4f8?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/watch-dogs2/BSXLFN5QQZSC" }, { "gameTitle": "We Happy Few", @@ -6062,7 +6391,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/we-happy-few/BPR2TBS2KMQJ", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.40710.68143759676978415.617fe4d2-4978-4b4d-9e04-cba4cf86d432.4820a8ef-b0f3-4fcd-ab0a-6a76014c0c3c?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.40691.68143759676978415.617fe4d2-4978-4b4d-9e04-cba4cf86d432.2ed3053f-3072-44f6-86d2-37c6c2f45087?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.40691.68143759676978415.617fe4d2-4978-4b4d-9e04-cba4cf86d432.2ed3053f-3072-44f6-86d2-37c6c2f45087?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/we-happy-few/BPR2TBS2KMQJ" }, { "gameTitle": "Weird West", @@ -6080,7 +6410,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/weird-west/9P0B86JN5X28", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.6486.14464239229931947.92218744-a2d3-4d4d-b2e8-a96385319eb0.24828d5c-9647-4f3e-8dde-acd52b333355?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.51072.14464239229931947.92218744-a2d3-4d4d-b2e8-a96385319eb0.9c407874-ff5f-496a-b32a-2fa8abb8aa37?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.51072.14464239229931947.92218744-a2d3-4d4d-b2e8-a96385319eb0.9c407874-ff5f-496a-b32a-2fa8abb8aa37?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/weird-west/9P0B86JN5X28" }, { "gameTitle": "Windjammers 2", @@ -6098,7 +6429,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/windjammers-2/9N232RBCFR2G", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.23620.13960214545711625.430c5652-1978-4e19-92b1-8e901cdd420c.3dffa413-653f-4895-9baf-693821a21ac5?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.61598.13960214545711625.430c5652-1978-4e19-92b1-8e901cdd420c.0f182277-d985-4e95-9d77-f006eebd634e?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.61598.13960214545711625.430c5652-1978-4e19-92b1-8e901cdd420c.0f182277-d985-4e95-9d77-f006eebd634e?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/windjammers-2/9N232RBCFR2G" }, { "gameTitle": "Wolfenstein: The New Order", @@ -6116,7 +6448,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/wolfenstein-the-new-order/BT9FFLG51VVG", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.5170.70764866595776237.49bcb933-4bfd-4b64-a764-f2ef10fde8d5.a78a2b99-81e7-4ed0-8d98-c1f2dc453506?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.18996.70764866595776237.49bcb933-4bfd-4b64-a764-f2ef10fde8d5.70d9caae-ca16-4b21-871a-f8c28349f7d9?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.18996.70764866595776237.49bcb933-4bfd-4b64-a764-f2ef10fde8d5.70d9caae-ca16-4b21-871a-f8c28349f7d9?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/wolfenstein-the-new-order/BT9FFLG51VVG" }, { "gameTitle": "Wolfenstein: The Old Blood", @@ -6133,7 +6466,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/wolfenstein-the-old-blood/BPV4GXTDCNSH", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.20849.68153994599451024.9f03bc8c-e4ac-4d66-9e8a-c64ec1810cc0.92b342ca-5481-4109-8b6f-f1b0d2940433?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.38487.68153994599451024.9f03bc8c-e4ac-4d66-9e8a-c64ec1810cc0.42e137be-f756-4ecb-933d-3e96b221e1d1?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.38487.68153994599451024.9f03bc8c-e4ac-4d66-9e8a-c64ec1810cc0.42e137be-f756-4ecb-933d-3e96b221e1d1?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/wolfenstein-the-old-blood/BPV4GXTDCNSH" }, { "gameTitle": "Wolfenstein: Youngblood", @@ -6151,7 +6485,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/wolfenstein-youngblood/C421ZX7RCG0W", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.22779.66937225626631404.377c6044-13d5-4b96-8957-5b00b3f14438.9112b323-c42b-4072-a1ea-11ce9cfd66fc?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.52745.66937225626631404.377c6044-13d5-4b96-8957-5b00b3f14438.7172a72d-7f7c-4a1c-aec9-62b3d0701fc0?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.52745.66937225626631404.377c6044-13d5-4b96-8957-5b00b3f14438.7172a72d-7f7c-4a1c-aec9-62b3d0701fc0?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/wolfenstein-youngblood/C421ZX7RCG0W" }, { "gameTitle": "Wolfenstein\u00ae II: The New Colossus\u2122", @@ -6169,7 +6504,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/wolfenstein-ii-the-new-colossus/C4LLMHFQ1BXQ", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.2334.66681981221768345.76a0e962-989c-428d-a0d4-5b11187fa034.220af923-7124-4d46-98f3-78cc10b9492b?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.3811.66681981221768345.76a0e962-989c-428d-a0d4-5b11187fa034.52e87a8b-c27a-44c8-91fb-28098b23466e?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.3811.66681981221768345.76a0e962-989c-428d-a0d4-5b11187fa034.52e87a8b-c27a-44c8-91fb-28098b23466e?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/wolfenstein-ii-the-new-colossus/C4LLMHFQ1BXQ" }, { "gameTitle": "Worms W.M.D", @@ -6186,7 +6522,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/worms-w.m.d/C4BZ7X545J1T", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.41175.66550732470485128.fb64d8d0-8d1a-4592-beb7-c3634d551b35.69e1f605-b5b2-4401-a2f4-223edb7879e9?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.44251.66550732470485128.fb64d8d0-8d1a-4592-beb7-c3634d551b35.de506352-7473-4e66-abc3-99f2c7a7cb2e?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.44251.66550732470485128.fb64d8d0-8d1a-4592-beb7-c3634d551b35.de506352-7473-4e66-abc3-99f2c7a7cb2e?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/worms-w.m.d/C4BZ7X545J1T" }, { "gameTitle": "Wreckfest", @@ -6204,7 +6541,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/wreckfest/BRJNRZ9N734V", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.64141.69762792333465121.4086c71f-fab9-4c14-b959-3e77164a74cf.27e4efda-6f6d-4d33-b636-4d6ef45396ea?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.26794.69762792333465121.4086c71f-fab9-4c14-b959-3e77164a74cf.6f7d7fb6-9c96-432b-8625-6749a1135a91?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.26794.69762792333465121.4086c71f-fab9-4c14-b959-3e77164a74cf.6f7d7fb6-9c96-432b-8625-6749a1135a91?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/wreckfest/BRJNRZ9N734V" }, { "gameTitle": "Yakuza 0", @@ -6221,7 +6559,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/yakuza-0/9NPP17LHJ3MK", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.60688.13785223586843168.612c6166-3afd-413c-9b13-549ae975f01e.dd033b47-50aa-4bb9-a080-a3012123e470?w=%i&h=%i", - "gameImageUrl": "https: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%iB" + "gameImageUrl": "https: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%iB", + "storeUrl": "https://www.xbox.com/games/store/yakuza-0/9NPP17LHJ3MK" }, { "gameTitle": "Yakuza 3 Remastered", @@ -6238,7 +6577,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/yakuza-3-remastered/9N3460XCS8BC", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.21577.13944201124915616.56f9bc1a-1a43-4af0-bfb0-126636850d84.bf6d5086-d069-49e4-b394-b74c9377162e?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.1380.13944201124915616.56f9bc1a-1a43-4af0-bfb0-126636850d84.c81ddfac-1afd-42bd-9793-b761dfe02512?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.1380.13944201124915616.56f9bc1a-1a43-4af0-bfb0-126636850d84.c81ddfac-1afd-42bd-9793-b761dfe02512?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/yakuza-3-remastered/9N3460XCS8BC" }, { "gameTitle": "Yakuza 4 Remastered", @@ -6255,7 +6595,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/yakuza-4-remastered/9NXFD44B98P4", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.44004.14426508489866901.a44eacfe-7e1e-495c-8aa4-17ccfbaa45e8.d8dafb44-9f24-42cc-8198-709a508821a5?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.57797.14426508489866901.a44eacfe-7e1e-495c-8aa4-17ccfbaa45e8.69580778-9fdb-4216-b4a7-8fe701875340?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.57797.14426508489866901.a44eacfe-7e1e-495c-8aa4-17ccfbaa45e8.69580778-9fdb-4216-b4a7-8fe701875340?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/yakuza-4-remastered/9NXFD44B98P4" }, { "gameTitle": "Yakuza 5 Remastered", @@ -6272,7 +6613,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/yakuza-5-remastered/9NK23S9XBMZ6", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.3163.13665499948454255.6c2e1d5c-1a06-4839-a773-4e814ef1ff4b.c720fdee-85c1-4b0e-a8d3-bfed564f5bbf?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.27632.13665499948454255.6c2e1d5c-1a06-4839-a773-4e814ef1ff4b.5aa64aae-6a76-4d9c-ab2c-317138c01c78?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.27632.13665499948454255.6c2e1d5c-1a06-4839-a773-4e814ef1ff4b.5aa64aae-6a76-4d9c-ab2c-317138c01c78?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/yakuza-5-remastered/9NK23S9XBMZ6" }, { "gameTitle": "Yakuza 6: The Song of Life", @@ -6289,7 +6631,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/yakuza-6-the-song-of-life/9NK3ZFC5R579", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.35958.13668783294084992.4ad59615-2917-47b4-88c2-a829ef88fc9d.d54cbf99-5857-4a78-815d-d7f680d55edb?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.22032.13668783294084992.4ad59615-2917-47b4-88c2-a829ef88fc9d.9b4b924a-aab0-4075-8068-953ee5f06891?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.22032.13668783294084992.4ad59615-2917-47b4-88c2-a829ef88fc9d.9b4b924a-aab0-4075-8068-953ee5f06891?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/yakuza-6-the-song-of-life/9NK3ZFC5R579" }, { "gameTitle": "Yakuza Kiwami", @@ -6306,7 +6649,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/yakuza-kiwami/9NBJ51BD0LTH", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.3710.13512592555926242.4f764cb5-1ca8-4601-9f0f-fd3d82976ea7.ffff5017-617d-4238-afc5-59551b5b4f47?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.8346.13512592555926242.4f764cb5-1ca8-4601-9f0f-fd3d82976ea7.dee63792-f454-4a83-b3a2-3e8ddf982573?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.8346.13512592555926242.4f764cb5-1ca8-4601-9f0f-fd3d82976ea7.dee63792-f454-4a83-b3a2-3e8ddf982573?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/yakuza-kiwami/9NBJ51BD0LTH" }, { "gameTitle": "Yakuza Kiwami 2", @@ -6323,7 +6667,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/yakuza-kiwami-2/9PBJL0NLFMK9", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.62149.14117812508694764.cd76a3cb-9c02-4790-93a0-eae298c80bb7.55a328e1-e09a-4431-888b-f4c6989f5683?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.20980.14117812508694764.cd76a3cb-9c02-4790-93a0-eae298c80bb7.1d5a6e2b-f1c7-4e01-aa1d-700cb5bb99e4?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.20980.14117812508694764.cd76a3cb-9c02-4790-93a0-eae298c80bb7.1d5a6e2b-f1c7-4e01-aa1d-700cb5bb99e4?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/yakuza-kiwami-2/9PBJL0NLFMK9" }, { "gameTitle": "Yakuza: Like a Dragon", @@ -6340,7 +6685,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/yakuza-like-a-dragon/9NXCSWCQTNFG", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.30664.14427542363794747.182f58ca-3a24-4a65-93bd-cdd320a35776.d7799370-aefe-44e7-8f83-4f8a5c363354?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.29145.14427542363794747.182f58ca-3a24-4a65-93bd-cdd320a35776.d3800c18-f897-458a-8b39-a337fb55f00d?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.29145.14427542363794747.182f58ca-3a24-4a65-93bd-cdd320a35776.d3800c18-f897-458a-8b39-a337fb55f00d?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/yakuza-like-a-dragon/9NXCSWCQTNFG" }, { "gameTitle": "You Suck at Parking", @@ -6357,7 +6703,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/you-suck-at-parking/9NCF3MRQ8480", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.25613.13565037407534311.ea0dd485-42ff-445f-ad44-0867748af14c.20d3b6e3-28d3-4875-b8a8-2c6def19eab4?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.603.13565037407534311.0d8dd6b7-ba76-442e-8a83-5547f7a8f00d.efcbe208-cbeb-4a99-9f3b-1b547a328e48?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.603.13565037407534311.0d8dd6b7-ba76-442e-8a83-5547f7a8f00d.efcbe208-cbeb-4a99-9f3b-1b547a328e48?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/you-suck-at-parking/9NCF3MRQ8480" }, { "gameTitle": "Young Souls", @@ -6375,7 +6722,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/young-souls/9PMM5T8C0CN6", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.56680.14291150913821725.3d8057b5-357a-4911-a453-96660fa5c913.b9598d6a-327c-4ea7-b1bc-e3886f94dfe8?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.8536.14291150913821725.c366710a-83fb-4fca-8c0d-4e933afd9a48.4fb69450-8bd0-4c59-91e0-cc68747a2565?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.8536.14291150913821725.c366710a-83fb-4fca-8c0d-4e933afd9a48.4fb69450-8bd0-4c59-91e0-cc68747a2565?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/young-souls/9PMM5T8C0CN6" }, { "gameTitle": "Zero Escape: The Nonary Games", @@ -6392,7 +6740,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/zero-escape-the-nonary-games/9P47H1RVDWWW", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.5566.14594067352473910.0b999f06-79de-4e28-92ef-eabddfb67749.354a1ba9-4163-4e87-8dbb-d2e6181a67ae?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.35064.14594067352473910.0b999f06-79de-4e28-92ef-eabddfb67749.12b0713b-54c9-4f99-8e37-39e252c8b8c0?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.35064.14594067352473910.0b999f06-79de-4e28-92ef-eabddfb67749.12b0713b-54c9-4f99-8e37-39e252c8b8c0?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/zero-escape-the-nonary-games/9P47H1RVDWWW" }, { "gameTitle": "Zombie Army 4: Dead War", @@ -6410,7 +6759,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/zombie-army-4-dead-war/9PLSCHRN5715", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.15083.14307155302772688.6d2bb19d-e8cc-4826-bd21-920020654895.22cfc234-258a-4edf-b871-db3c9e4a7127?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.2216.14307155302772688.6d2bb19d-e8cc-4826-bd21-920020654895.bdcdac0b-51a7-48f8-815b-e77215cd2c8e?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.2216.14307155302772688.6d2bb19d-e8cc-4826-bd21-920020654895.bdcdac0b-51a7-48f8-815b-e77215cd2c8e?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/zombie-army-4-dead-war/9PLSCHRN5715" }, { "gameTitle": "art of rally", @@ -6428,7 +6778,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/art-of-rally/9P6JQDDZ2MQB", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.12769.14623403501904333.a0e82bb4-85b9-4a3c-9fd8-d7d04e850bd6.6db97f4e-c835-477c-8a83-06ccd306bd73?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.46481.14623403501904333.a0e82bb4-85b9-4a3c-9fd8-d7d04e850bd6.dc3977f6-caa0-48c0-9f1d-1d925af2accb?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.46481.14623403501904333.a0e82bb4-85b9-4a3c-9fd8-d7d04e850bd6.dc3977f6-caa0-48c0-9f1d-1d925af2accb?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/art-of-rally/9P6JQDDZ2MQB" }, { "gameTitle": "skate. (2007)", @@ -6445,7 +6796,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/skate.-2007/C3QWNCV55VLL", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.56436.66765638016841945.44eb6927-d62a-4346-a97d-4d1d0881b107.ac9661f7-1e16-4df1-bf81-119631e97f8b?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.27751.66765638016841945.44eb6927-d62a-4346-a97d-4d1d0881b107.1d18ea8a-3fb7-4968-b240-411a3fc2fd37?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.27751.66765638016841945.44eb6927-d62a-4346-a97d-4d1d0881b107.1d18ea8a-3fb7-4968-b240-411a3fc2fd37?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/skate.-2007/C3QWNCV55VLL" }, { "gameTitle": "theHunter: Call of the Wild", @@ -6463,6 +6815,7 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/thehunter-call-of-the-wild/BXBJQ1932138", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.9956.63553167684393025.1b31f51e-c4c6-49b1-bf61-a2e65ea14c73.a126b6d1-284c-4746-a11d-f6af188d1918?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.48448.63553167684393025.1b31f51e-c4c6-49b1-bf61-a2e65ea14c73.829114dc-cfe8-49ab-8636-0440de686f23?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.48448.63553167684393025.1b31f51e-c4c6-49b1-bf61-a2e65ea14c73.829114dc-cfe8-49ab-8636-0440de686f23?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/thehunter-call-of-the-wild/BXBJQ1932138" } ] \ No newline at end of file diff --git a/tools/xcloud_recents.json b/tools/xcloud_recents.json index 7fc038a..82bca6f 100644 --- a/tools/xcloud_recents.json +++ b/tools/xcloud_recents.json @@ -15,7 +15,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/a-plague-tale-requiem/9ND0JVB184XL", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.60562.13558336166432541.beb57fbe-cc4b-40c5-ba76-c8112867dea2.9a69e497-4f9f-495d-9ac6-f8956b491d91?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.59830.13558336166432541.beb57fbe-cc4b-40c5-ba76-c8112867dea2.f764a45c-f860-483f-b264-aa9041f2bb62?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.59830.13558336166432541.beb57fbe-cc4b-40c5-ba76-c8112867dea2.f764a45c-f860-483f-b264-aa9041f2bb62?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/a-plague-tale-requiem/9ND0JVB184XL" }, { "gameTitle": "Beacon Pines", @@ -33,7 +34,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/beacon-pines/9P4R2M0NRWNK", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.23560.14588206397851258.078192f2-519f-4a81-b68d-2dbd6199f2c2.af953250-54af-4a2a-be0c-163b68917421?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.39650.14588206397851258.078192f2-519f-4a81-b68d-2dbd6199f2c2.0f659ae9-51f1-4a1d-a086-0a5f165d5b5f?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.39650.14588206397851258.078192f2-519f-4a81-b68d-2dbd6199f2c2.0f659ae9-51f1-4a1d-a086-0a5f165d5b5f?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/beacon-pines/9P4R2M0NRWNK" }, { "gameTitle": "Chivalry 2", @@ -51,7 +53,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/chivalry-2/9N7CJX93ZGWN", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.61947.14071745200459129.81e3e86f-3ab4-4027-b9a1-81f595fcb505.fc2487e4-7785-4a73-b2ad-b94aa01a7e7f?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.56595.14071745200459129.81e3e86f-3ab4-4027-b9a1-81f595fcb505.bcc44c15-cee0-4c07-a92c-766beb8fb174?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.56595.14071745200459129.81e3e86f-3ab4-4027-b9a1-81f595fcb505.bcc44c15-cee0-4c07-a92c-766beb8fb174?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/chivalry-2/9N7CJX93ZGWN" }, { "gameTitle": "Costume Quest", @@ -69,7 +72,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/costume-quest/BR74RLMH966K", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.18636.69532389726997442.230b98e2-1f17-47ab-9d5a-06afb771f0de.57d2c274-ba74-4d0a-a98f-24a4ca808a82?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.47121.69532389726997442.230b98e2-1f17-47ab-9d5a-06afb771f0de.a4b185ec-6d05-4391-9919-046299c7651b?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.47121.69532389726997442.230b98e2-1f17-47ab-9d5a-06afb771f0de.a4b185ec-6d05-4391-9919-046299c7651b?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/costume-quest/BR74RLMH966K" }, { "gameTitle": "DEATHLOOP", @@ -87,7 +91,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/deathloop/9P5Z4530318L", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.5858.14634955238674857.649b7ff9-0dfc-4951-9b65-c5d815215da6.90208516-ba3b-47a9-a130-ef94cf860f5b?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.26641.14634955238674857.649b7ff9-0dfc-4951-9b65-c5d815215da6.bacdd878-0313-4c58-9434-459afd7cf535?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.26641.14634955238674857.649b7ff9-0dfc-4951-9b65-c5d815215da6.bacdd878-0313-4c58-9434-459afd7cf535?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/deathloop/9P5Z4530318L" }, { "gameTitle": "Despot's Game", @@ -105,7 +110,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/despot's-game/9P5ZDVMCJMFD", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.54530.14634731171917513.ee44ea98-341d-42e8-b67a-c2a4254a08a0.3a8876e7-694c-40d5-8efc-0264051414e8?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.13399.14634731171917513.ee44ea98-341d-42e8-b67a-c2a4254a08a0.4239454b-8c5a-4424-b410-2039ca63a84c?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.13399.14634731171917513.ee44ea98-341d-42e8-b67a-c2a4254a08a0.4239454b-8c5a-4424-b410-2039ca63a84c?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/despot's-game/9P5ZDVMCJMFD" }, { "gameTitle": "Eville", @@ -123,7 +129,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/eville/9PC12991NZ5N", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.31296.14112988465880137.944f8dc0-63f1-4f15-96aa-cab88a628053.65e7f8f4-3625-4a09-8aa7-fead27a7806f?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.19828.14112988465880137.944f8dc0-63f1-4f15-96aa-cab88a628053.3baaa95c-7788-4c73-aef5-b1cd1bd840b6?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.19828.14112988465880137.944f8dc0-63f1-4f15-96aa-cab88a628053.3baaa95c-7788-4c73-aef5-b1cd1bd840b6?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/eville/9PC12991NZ5N" }, { "gameTitle": "Grounded", @@ -141,7 +148,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/grounded/9PJTHRNVH62H", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.36912.14280109286674604.94f3a3e8-211f-41e5-ac9c-d948b5377852.4e9bf257-12e0-4f04-9239-671818df45b0?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.27514.14280109286674604.1fb359e4-01eb-4818-b992-b225ce4869c9.c9733025-0344-4e66-aff1-ee3bcf9016a7?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.27514.14280109286674604.1fb359e4-01eb-4818-b992-b225ce4869c9.c9733025-0344-4e66-aff1-ee3bcf9016a7?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/grounded/9PJTHRNVH62H" }, { "gameTitle": "Hardspace: Shipbreaker", @@ -159,7 +167,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/hardspace-shipbreaker/9ND8C4314ZZG", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.11359.13552902647075103.9e24872e-3f43-4078-8279-1ddf37a77ab1.795f17b4-3acd-4226-91d9-5c6031d7899e?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.36125.13552902647075103.9e24872e-3f43-4078-8279-1ddf37a77ab1.246fb260-7ac0-4916-867b-dce60a943024?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.36125.13552902647075103.9e24872e-3f43-4078-8279-1ddf37a77ab1.246fb260-7ac0-4916-867b-dce60a943024?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/hardspace-shipbreaker/9ND8C4314ZZG" }, { "gameTitle": "Let's Build a Zoo", @@ -177,7 +186,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/let's-build-a-zoo/9P8N66DTG10T", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.63900.14084512162357210.0d6eea09-167f-4aad-97d7-d4d17f848799.2a1722e7-328d-4bb3-b556-0d4acae1567b?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.15530.14084512162357210.0d6eea09-167f-4aad-97d7-d4d17f848799.9a461717-eb83-4a42-875e-7c96139197b1?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.15530.14084512162357210.0d6eea09-167f-4aad-97d7-d4d17f848799.9a461717-eb83-4a42-875e-7c96139197b1?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/let's-build-a-zoo/9P8N66DTG10T" }, { "gameTitle": "Medieval Dynasty", @@ -195,7 +205,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/medieval-dynasty/9PDDP6ML6XHF", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.26306.14156112272410024.03b91df3-d826-4d77-a692-6b75d9b18188.14e344a6-e6f9-43bd-8f8d-f6e965429119?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.63309.14156112272410024.03b91df3-d826-4d77-a692-6b75d9b18188.85b2f37e-0bd7-4de5-a925-bc86f2c59896?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.63309.14156112272410024.03b91df3-d826-4d77-a692-6b75d9b18188.85b2f37e-0bd7-4de5-a925-bc86f2c59896?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/medieval-dynasty/9PDDP6ML6XHF" }, { "gameTitle": "Moonscars", @@ -213,7 +224,8 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/moonscars/9P77VD8MGJX8", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.48607.14609228948314679.57b5d232-e029-48c3-a08c-a51885c8f604.a75be4f6-a08c-465f-8452-bf3c2ee5da75?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.16286.14609228948314679.57b5d232-e029-48c3-a08c-a51885c8f604.af5bedd3-16ab-4c9d-a23d-deda8b3b585f?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.16286.14609228948314679.57b5d232-e029-48c3-a08c-a51885c8f604.af5bedd3-16ab-4c9d-a23d-deda8b3b585f?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/moonscars/9P77VD8MGJX8" }, { "gameTitle": "Patrulha Canina: Grand Prix", @@ -229,9 +241,10 @@ "controllerSupport": false, "touchControllerSupport": false }, - "xcloudUrl": "https://www.xbox.com/%s/play/games/patrulha-canina-grand-prix/9MWBT3HFCZ3Z", + "xcloudUrl": "https://www.xbox.com/%s/play/games/paw-patrol-grand-prix/9MWBT3HFCZ3Z", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.30417.13842132658396836.fba80705-9bc9-45ad-84f9-621f75fe99ec.63412d4a-24e5-449a-9622-75435adb7a73?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.53527.13842132658396836.fba80705-9bc9-45ad-84f9-621f75fe99ec.a7d39a33-f2c3-408b-a88d-4ef40eb5c446?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.53527.13842132658396836.fba80705-9bc9-45ad-84f9-621f75fe99ec.a7d39a33-f2c3-408b-a88d-4ef40eb5c446?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/patrulha-canina-grand-prix/9MWBT3HFCZ3Z" }, { "gameTitle": "Prodeus", @@ -248,8 +261,9 @@ "touchControllerSupport": false }, "xcloudUrl": "https://www.xbox.com/%s/play/games/prodeus/9MZRSLLWKWDV", - "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.25232.13864617007662897.01825ec5-fdc1-49fc-a5ac-f29f1860b3d2.5ab6a036-6d65-44b6-9ac8-7dba4e646ad1?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.9406.13864617007662897.01825ec5-fdc1-49fc-a5ac-f29f1860b3d2.4de0b1f4-bc29-45f6-9f06-cb0449d3d4d3?h=%i&format=jpg" + "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.13041.13864617007662897.01825ec5-fdc1-49fc-a5ac-f29f1860b3d2.b9a8b49a-0945-4ea8-a389-1cc6ba14ba50?w=%i&h=%i", + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.9406.13864617007662897.01825ec5-fdc1-49fc-a5ac-f29f1860b3d2.4de0b1f4-bc29-45f6-9f06-cb0449d3d4d3?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/prodeus/9MZRSLLWKWDV" }, { "gameTitle": "Scorn", @@ -266,6 +280,7 @@ }, "xcloudUrl": "https://www.xbox.com/%s/play/games/scorn/9NM3TNRPQXLR", "tileGameImageUrl": "https://store-images.s-microsoft.com/image/apps.51381.13699799412731780.9f7b812e-456c-430e-8cec-380f1ca9e4a2.dd9f4725-f6e0-4fe4-9484-9d5f22682786?w=%i&h=%i", - "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.16661.13699799412731780.1afb5b8c-d3cf-40b3-aa5e-f5e01adefd6c.71e32c0e-4c10-4a4b-a813-3478373b1769?h=%i&format=jpg" + "gameImageUrl": "https://store-images.s-microsoft.com/image/apps.16661.13699799412731780.1afb5b8c-d3cf-40b3-aa5e-f5e01adefd6c.71e32c0e-4c10-4a4b-a813-3478373b1769?h=%i&format=jpg", + "storeUrl": "https://www.xbox.com/games/store/scorn/9NM3TNRPQXLR" } ] \ No newline at end of file From 6917e037a103cd48aef54a05d8ed4d9950304bc6 Mon Sep 17 00:00:00 2001 From: LuanRoger Date: Thu, 20 Oct 2022 10:13:52 -0300 Subject: [PATCH 10/11] Update xbox_launcher game model by xcloud_game_picker model --- lib/models/app_models/game_model.dart | 5 +- .../my_library_page/my_library_page.dart | 11 +++- pubspec.lock | 60 ++++++++++++++++++- pubspec.yaml | 3 +- tools/xcloud_games.json | 2 +- .../flutter/generated_plugin_registrant.cc | 3 + windows/flutter/generated_plugins.cmake | 1 + 7 files changed, 78 insertions(+), 7 deletions(-) diff --git a/lib/models/app_models/game_model.dart b/lib/models/app_models/game_model.dart index ffb7baa..29d1069 100644 --- a/lib/models/app_models/game_model.dart +++ b/lib/models/app_models/game_model.dart @@ -16,6 +16,7 @@ class GameModel implements AppModel { late String xcloudUrl; late String tileGameImageUrl; late String gameImageUrl; + late String storeUrl; @override GameModel fromJson(Map json) { @@ -31,6 +32,7 @@ class GameModel implements AppModel { gameModel.xcloudUrl = json['xcloudUrl'] as String; gameModel.tileGameImageUrl = json['tileGameImageUrl'] as String; gameModel.gameImageUrl = json['gameImageUrl'] as String; + gameModel.storeUrl = json["storeUrl"] as String; return gameModel; } @@ -46,7 +48,8 @@ class GameModel implements AppModel { "extraGameProperties": extraGameProperties.toJson(), "xcloudUrl": xcloudUrl, "tileGameImageUrl": tileGameImageUrl, - "gameImageUrl": gameImageUrl + "gameImageUrl": gameImageUrl, + "storeUrl": storeUrl }; } diff --git a/lib/pages/my_library_page/my_library_page.dart b/lib/pages/my_library_page/my_library_page.dart index 26d4fb8..9f62035 100644 --- a/lib/pages/my_library_page/my_library_page.dart +++ b/lib/pages/my_library_page/my_library_page.dart @@ -3,6 +3,7 @@ import 'package:fluent_ui/fluent_ui.dart'; import 'package:flutter/services.dart'; import 'package:provider/provider.dart'; +import 'package:url_launcher/url_launcher.dart'; import 'package:xbox_launcher/models/app_models/app_model.dart'; import 'package:xbox_launcher/models/app_models/game_model.dart'; import 'package:xbox_launcher/models/controller_keyboard_pair.dart'; @@ -60,8 +61,14 @@ class _MyGamesPageState extends XboxPageState { .show(context); }), ContextMenuItem("See on Microsoft Store", - icon: FluentIcons.store_logo16, - onPressed: () => print("Microsoft Store")), + icon: FluentIcons.store_logo16, onPressed: () async { + Object? focusObject = + context.read().currentValue; + if (focusObject == null && focusObject is! AppModel) return; + + GameModel gameModel = focusObject as GameModel; + await launchUrl(Uri.parse(gameModel.storeUrl)); + }), ]).show(context)) ]; diff --git a/pubspec.lock b/pubspec.lock index 84e3747..179c84d 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -411,6 +411,62 @@ packages: url: "https://pub.dartlang.org" source: hosted version: "0.4.12" + url_launcher: + dependency: "direct main" + description: + name: url_launcher + url: "https://pub.dartlang.org" + source: hosted + version: "6.1.6" + url_launcher_android: + dependency: transitive + description: + name: url_launcher_android + url: "https://pub.dartlang.org" + source: hosted + version: "6.0.19" + url_launcher_ios: + dependency: transitive + description: + name: url_launcher_ios + url: "https://pub.dartlang.org" + source: hosted + version: "6.0.17" + url_launcher_linux: + dependency: transitive + description: + name: url_launcher_linux + url: "https://pub.dartlang.org" + source: hosted + version: "3.0.1" + url_launcher_macos: + dependency: transitive + description: + name: url_launcher_macos + url: "https://pub.dartlang.org" + source: hosted + version: "3.0.1" + url_launcher_platform_interface: + dependency: transitive + description: + name: url_launcher_platform_interface + url: "https://pub.dartlang.org" + source: hosted + version: "2.1.1" + url_launcher_web: + dependency: transitive + description: + name: url_launcher_web + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.13" + url_launcher_windows: + dependency: transitive + description: + name: url_launcher_windows + url: "https://pub.dartlang.org" + source: hosted + version: "3.0.1" vector_math: dependency: transitive description: @@ -423,8 +479,8 @@ packages: description: path: "." ref: HEAD - resolved-ref: "49908fd342d4b967ee30399eb8685999588a9553" - url: "https://github.com/LuanRoger/virtual_keyboard.git" + resolved-ref: "9df5062bca9cf211a105fe3f401c01d79314965b" + url: "https://github.com/LuanRoger/virtual_keyboard" source: git version: "1.0.1" webview_windows: diff --git a/pubspec.yaml b/pubspec.yaml index 098d2a8..a3b5b22 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -14,7 +14,7 @@ dependencies: provider: ^6.0.3 xinput_gamepad: ^1.2.0 virtual_keyboard: - git: https://github.com/LuanRoger/virtual_keyboard.git + git: https://github.com/LuanRoger/virtual_keyboard clock: ^1.1.1 window_manager: ^0.2.7 shared_preferences: ^2.0.15 @@ -25,6 +25,7 @@ dependencies: flutter_svg: ^1.1.5 sys_info_getter: path: ./internals/sys_info_getter/ + url_launcher: ^6.1.6 dev_dependencies: flutter_test: diff --git a/tools/xcloud_games.json b/tools/xcloud_games.json index cde4542..8b2b5ac 100644 --- a/tools/xcloud_games.json +++ b/tools/xcloud_games.json @@ -518,7 +518,7 @@ "storeUrl": "https://www.xbox.com/games/store/ben-10-uma-super-viagem/9NJWFF2KHL6H" }, { - "gameTitle": "", + "gameTitle": "Besiege Console (Game Preview)", "gamePublisher": "Spiderling Studios", "gameDeveloper": "Spiderling Studios", "gameGenres": [ diff --git a/windows/flutter/generated_plugin_registrant.cc b/windows/flutter/generated_plugin_registrant.cc index 94e38cc..d6a88a8 100644 --- a/windows/flutter/generated_plugin_registrant.cc +++ b/windows/flutter/generated_plugin_registrant.cc @@ -7,12 +7,15 @@ #include "generated_plugin_registrant.h" #include +#include #include #include void RegisterPlugins(flutter::PluginRegistry* registry) { ScreenRetrieverPluginRegisterWithRegistrar( registry->GetRegistrarForPlugin("ScreenRetrieverPlugin")); + UrlLauncherWindowsRegisterWithRegistrar( + registry->GetRegistrarForPlugin("UrlLauncherWindows")); WebviewWindowsPluginRegisterWithRegistrar( registry->GetRegistrarForPlugin("WebviewWindowsPlugin")); WindowManagerPluginRegisterWithRegistrar( diff --git a/windows/flutter/generated_plugins.cmake b/windows/flutter/generated_plugins.cmake index c0c4e87..8d46259 100644 --- a/windows/flutter/generated_plugins.cmake +++ b/windows/flutter/generated_plugins.cmake @@ -4,6 +4,7 @@ list(APPEND FLUTTER_PLUGIN_LIST screen_retriever + url_launcher_windows webview_windows window_manager ) From 5b20ac6e4222ba9554d39af556936ce94564a8e0 Mon Sep 17 00:00:00 2001 From: LuanRoger Date: Sat, 22 Oct 2022 13:22:31 -0300 Subject: [PATCH 11/11] Fix visual bugs --- .../my_library_page/my_library_page.dart | 21 ++++++- .../sections/manage_section.dart | 44 ++++++++------ .../sections/my_games_section.dart | 2 +- .../volume_info/volume_info_viewer.dart | 17 +++--- .../navigation_section_stateful.dart | 57 ------------------- .../navigation_section_stateless.dart | 3 - 6 files changed, 56 insertions(+), 88 deletions(-) delete mode 100644 lib/shared/widgets/navigations/navigation_section_stateful.dart diff --git a/lib/pages/my_library_page/my_library_page.dart b/lib/pages/my_library_page/my_library_page.dart index 9f62035..6ce8784 100644 --- a/lib/pages/my_library_page/my_library_page.dart +++ b/lib/pages/my_library_page/my_library_page.dart @@ -1,6 +1,6 @@ // ignore_for_file: curly_braces_in_flow_control_structures -import 'package:fluent_ui/fluent_ui.dart'; +import 'package:fluent_ui/fluent_ui.dart' hide TextButton; import 'package:flutter/services.dart'; import 'package:provider/provider.dart'; import 'package:url_launcher/url_launcher.dart'; @@ -14,10 +14,11 @@ import 'package:xbox_launcher/pages/my_library_page/sections/manage_section.dart import 'package:xbox_launcher/pages/my_library_page/sections/my_apps_section.dart'; import 'package:xbox_launcher/pages/my_library_page/sections/my_games_section.dart'; import 'package:xbox_launcher/providers/focus_element_provider.dart'; -import 'package:xbox_launcher/providers/profile_provider.dart'; +import 'package:xbox_launcher/shared/widgets/buttons/text_button.dart'; import 'package:xbox_launcher/shared/widgets/dialogs/context_menu/context_menu.dart'; import 'package:xbox_launcher/shared/widgets/dialogs/context_menu/context_menu_add_group.dart'; import 'package:xbox_launcher/shared/widgets/dialogs/context_menu/context_menu_item.dart'; +import 'package:xbox_launcher/shared/widgets/dialogs/system_dialog.dart'; import 'package:xbox_launcher/shared/widgets/models/xbox_page_stateful.dart'; import 'package:xbox_launcher/shared/widgets/navigations/navigation_bar.dart'; import 'package:xinput_gamepad/xinput_gamepad.dart'; @@ -67,7 +68,21 @@ class _MyGamesPageState extends XboxPageState { if (focusObject == null && focusObject is! AppModel) return; GameModel gameModel = focusObject as GameModel; - await launchUrl(Uri.parse(gameModel.storeUrl)); + await SystemDialog( + title: "Access a external site.", + content: "Do you want to go to a external site?", + actions: [ + TextButton( + title: "Confirm", + onPressed: () async { + await launchUrl(Uri.parse(gameModel.storeUrl)); + Navigator.pop(context); + }), + TextButton( + title: "Cancel", + onPressed: () => Navigator.pop(context)) + ], + ).show(context); }), ]).show(context)) ]; diff --git a/lib/pages/my_library_page/sections/manage_section.dart b/lib/pages/my_library_page/sections/manage_section.dart index e9a6b30..051cfe2 100644 --- a/lib/pages/my_library_page/sections/manage_section.dart +++ b/lib/pages/my_library_page/sections/manage_section.dart @@ -27,8 +27,10 @@ class ManageSection extends NavigationSectionStateless { List columnItems(BuildContext context) { return [ Flexible( - child: ButtonGrid(buttons: { - "Tiles": [ + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + const Text("Tiles", style: AppTextStyle.MY_APPS_SECTIONS_TILE), IconTextButton( title: "Tile size", icon: FluentIcons.size_legacy, @@ -51,22 +53,30 @@ class ManageSection extends NavigationSectionStateless { }) ]).show(context); }) - ] - }), + ], + ), + ), + Expanded( + child: Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + const Text("Device info", + style: AppTextStyle.MY_APPS_SECTIONS_TILE), + FutureBuilder?>( + future: getDiskInfos(), + builder: (context, snapshot) { + switch (snapshot.connectionState) { + case ConnectionState.waiting: + return const ProgressRing(); + default: + return Expanded( + child: VolumeInfoList(diskInfos: snapshot.data!)); + } + }, + ) + ], + ), ), - const Text("Device info", style: AppTextStyle.MY_APPS_SECTIONS_TILE), - Flexible( - child: FutureBuilder?>( - future: getDiskInfos(), - builder: (context, snapshot) { - switch (snapshot.connectionState) { - case ConnectionState.waiting: - return const ProgressRing(); - default: - return VolumeInfoList(diskInfos: snapshot.data!); - } - }, - )), ]; } } diff --git a/lib/pages/my_library_page/sections/my_games_section.dart b/lib/pages/my_library_page/sections/my_games_section.dart index b8a4d16..96c86df 100644 --- a/lib/pages/my_library_page/sections/my_games_section.dart +++ b/lib/pages/my_library_page/sections/my_games_section.dart @@ -144,7 +144,7 @@ class MyGamesSection extends NavigationSectionStateless { builder: (_, snapshot) { switch (snapshot.connectionState) { case ConnectionState.waiting: - return const ProgressRing(); + return const Center(child: ProgressRing()); default: if (snapshot.hasData && !(snapshot.data as bool) || gamesList.isEmpty) diff --git a/lib/shared/widgets/infos_provider/volume_info/volume_info_viewer.dart b/lib/shared/widgets/infos_provider/volume_info/volume_info_viewer.dart index 2aa4975..c89b778 100644 --- a/lib/shared/widgets/infos_provider/volume_info/volume_info_viewer.dart +++ b/lib/shared/widgets/infos_provider/volume_info/volume_info_viewer.dart @@ -16,7 +16,6 @@ class VolumeInfoViwer extends StatelessWidget { @override Widget build(BuildContext context) { return SizedBox( - height: 30, width: 250, child: OutlinedButton( style: ButtonStyle(border: ButtonState.all(BorderSide.none)), @@ -43,13 +42,17 @@ class VolumeInfoViwer extends StatelessWidget { Expanded( child: Stack( alignment: Alignment.center, - fit: StackFit.expand, children: [ - ProgressRing( - value: percentageRemaining, - backgroundColor: Colors.green, - activeColor: Colors.green, - strokeWidth: 3, + SizedBox( + height: 100, + width: 100, + child: ProgressRing( + value: percentageRemaining, + backgroundColor: Colors.green, + activeColor: Colors.green, + backwards: true, + strokeWidth: 3, + ), ), Center( child: Text( diff --git a/lib/shared/widgets/navigations/navigation_section_stateful.dart b/lib/shared/widgets/navigations/navigation_section_stateful.dart deleted file mode 100644 index 756b4fb..0000000 --- a/lib/shared/widgets/navigations/navigation_section_stateful.dart +++ /dev/null @@ -1,57 +0,0 @@ -import 'package:fluent_ui/fluent_ui.dart'; -import 'package:xbox_launcher/shared/app_text_style.dart'; -import 'package:xbox_launcher/shared/widgets/navigations/models/navigation_section_base.dart'; -import 'package:xbox_launcher/shared/widgets/navigations/models/navigation_section_widget.dart'; - -abstract class NavigationSectionStateful extends StatefulWidget - implements NavigationSectionBase { - @override - final String sectionName; - - const NavigationSectionStateful(this.sectionName, {Key? key}) - : super(key: key); -} - -abstract class NavigationSectionStatefulState - extends State - implements NavigationSectionWidget { - @override - List columnItems(BuildContext context); - @override - List? titleActions(BuildContext context); - - Column _buildColumn( - List columnContent, List? titleActionsList) { - return Column( - children: [ - Flexible( - child: Row( - mainAxisAlignment: MainAxisAlignment.spaceBetween, - children: [ - Text( - widget.sectionName, - style: AppTextStyle.MY_GAMES_SECTIONS_TILE, - ), - titleActionsList != null - ? Row( - children: titleActionsList, - ) - : const SizedBox() - ], - ), - ), - const SizedBox( - height: 8.0, - ), - ...columnContent, - ], - ); - } - - @override - Widget build(BuildContext context) { - return Padding( - padding: const EdgeInsets.fromLTRB(50, 50, 50, 0), - child: _buildColumn(columnItems(context), titleActions(context))); - } -} diff --git a/lib/shared/widgets/navigations/navigation_section_stateless.dart b/lib/shared/widgets/navigations/navigation_section_stateless.dart index 9075555..430c930 100644 --- a/lib/shared/widgets/navigations/navigation_section_stateless.dart +++ b/lib/shared/widgets/navigations/navigation_section_stateless.dart @@ -38,9 +38,6 @@ abstract class NavigationSectionStateless extends StatelessWidget ], ), ), - const SizedBox( - height: 8.0, - ), ...columnContent, ], );