Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added missing shorthands for games #1287

Merged
merged 3 commits into from
May 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions src/model/game/GameManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@ export default class GameManager {
"Atomicrops", ["Atomicrops.exe"], "Atomicrops_Data",
"https://thunderstore.io/c/atomicrops/api/v1/package/", EXCLUSIONS,
[new StorePlatformMetadata(StorePlatform.STEAM, "757320")], "Atomicrops.jpg",
GameSelectionDisplayMode.VISIBLE, GameInstanceType.GAME, PackageLoader.BEPINEX, []),
GameSelectionDisplayMode.VISIBLE, GameInstanceType.GAME, PackageLoader.BEPINEX, ["ac"]),

new Game("Erenshor", "Erenshor", "Erenshor",
"Erenshor", ["Erenshor.exe"], "Erenshor_Data",
Expand All @@ -532,7 +532,7 @@ export default class GameManager {
"Last Train Outta' Wormtown", ["Last Train Out Of WormTown.exe"], "Last Train Out Of WormTown_Data",
"https://thunderstore.io/c/last-train-outta-wormtown/api/v1/package/", EXCLUSIONS,
[new StorePlatformMetadata(StorePlatform.STEAM, "2318480")], "LastTrainOuttaWormtown.png",
GameSelectionDisplayMode.VISIBLE, GameInstanceType.GAME, PackageLoader.BEPINEX, []),
GameSelectionDisplayMode.VISIBLE, GameInstanceType.GAME, PackageLoader.BEPINEX, ["ltow"]),

new Game("DREDGE", "Dredge", "Dredge",
"DREDGE", ["DREDGE.exe"], "DREDGE_Data",
Expand All @@ -544,25 +544,25 @@ export default class GameManager {
"Cities Skylines II", ["Cities2.exe"], "CitiesSkylines2_Data",
"https://thunderstore.io/c/cities-skylines-ii/api/v1/package/", EXCLUSIONS,
[new StorePlatformMetadata(StorePlatform.STEAM, "949230"), new StorePlatformMetadata(StorePlatform.XBOX_GAME_PASS, "ParadoxInteractive.CitiesSkylinesII-PCEdition")], "CitiesSkylines2.png",
GameSelectionDisplayMode.VISIBLE, GameInstanceType.GAME, PackageLoader.BEPINEX, []),
GameSelectionDisplayMode.VISIBLE, GameInstanceType.GAME, PackageLoader.BEPINEX, ["cs2"]),

new Game("Lethal Company", "LethalCompany", "LethalCompany",
"Lethal Company", ["Lethal Company.exe"], "LethalCompany_Data",
"https://thunderstore.io/c/lethal-company/api/v1/package/", EXCLUSIONS,
[new StorePlatformMetadata(StorePlatform.STEAM, "1966720")], "LethalCompany.png",
GameSelectionDisplayMode.VISIBLE, GameInstanceType.GAME, PackageLoader.BEPINEX, []),
GameSelectionDisplayMode.VISIBLE, GameInstanceType.GAME, PackageLoader.BEPINEX, ["lc"]),

new Game("Meeple Station", "MeepleStation", "MeepleStation",
"Meeple Station", ["Meeple Station.exe"], "MeepleStation_Data",
"https://thunderstore.io/c/meeple-station/api/v1/package/", EXCLUSIONS,
[new StorePlatformMetadata(StorePlatform.STEAM, "900010")], "MeepleStation.png",
GameSelectionDisplayMode.VISIBLE, GameInstanceType.GAME, PackageLoader.BEPINEX, []),
GameSelectionDisplayMode.VISIBLE, GameInstanceType.GAME, PackageLoader.BEPINEX, ["ms"]),

new Game("Void Crew", "VoidCrew", "VoidCrew",
"Void Crew", ["Void Crew.exe"], "VoidCrew_Data",
"https://thunderstore.io/c/void-crew/api/v1/package/", EXCLUSIONS,
[new StorePlatformMetadata(StorePlatform.STEAM, "1063420")], "VoidCrew.png",
GameSelectionDisplayMode.VISIBLE, GameInstanceType.GAME, PackageLoader.BEPINEX, []),
GameSelectionDisplayMode.VISIBLE, GameInstanceType.GAME, PackageLoader.BEPINEX, ["vc"]),

new Game("Sailwind", "Sailwind", "Sailwind",
"Sailwind", ["Sailwind.exe"], "Sailwind_Data",
Expand Down Expand Up @@ -594,7 +594,7 @@ export default class GameManager {
"Content Warning", ["Content Warning.exe"], "ContentWarning_Data",
"https://thunderstore.io/c/content-warning/api/v1/package/", EXCLUSIONS,
[new StorePlatformMetadata(StorePlatform.STEAM, "2881650")], "ContentWarning.png",
GameSelectionDisplayMode.VISIBLE, GameInstanceType.GAME, PackageLoader.BEPINEX, []),
GameSelectionDisplayMode.VISIBLE, GameInstanceType.GAME, PackageLoader.BEPINEX, ["cw"]),

new Game("Balatro", "Balatro", "Balatro",
"Balatro", ["Balatro.exe"], "Balatro_Data",
Expand All @@ -619,7 +619,7 @@ export default class GameManager {
"Against the Storm", ["Against the Storm.exe"], "Against the Storm_Data",
"https://thunderstore.io/c/against-the-storm/api/v1/package/", EXCLUSIONS,
[new StorePlatformMetadata(StorePlatform.STEAM, "1336490")], "AgainstTheStorm.png",
GameSelectionDisplayMode.VISIBLE, GameInstanceType.GAME, PackageLoader.BEPINEX, []),
GameSelectionDisplayMode.VISIBLE, GameInstanceType.GAME, PackageLoader.BEPINEX, ["ats"]),

new Game("Lycans", "Lycans", "Lycans",
"Lycans", ["Lycans.exe"], "Lycans_Data",
Expand All @@ -631,7 +631,7 @@ export default class GameManager {
"Castle Story", ["Castle Story.exe"], "Castle Story_Data",
"https://thunderstore.io/c/castle-story/api/v1/package/", EXCLUSIONS,
[new StorePlatformMetadata(StorePlatform.STEAM_DIRECT, "227860")], "CastleStory.png",
GameSelectionDisplayMode.VISIBLE, GameInstanceType.GAME, PackageLoader.BEPINEX, []),
GameSelectionDisplayMode.VISIBLE, GameInstanceType.GAME, PackageLoader.BEPINEX, ["cs"]),
];

static get activeGame(): Game {
Expand Down
Loading