diff --git a/src/assets/images/game_selection/Gloomwood.png b/src/assets/images/game_selection/Gloomwood.png new file mode 100644 index 000000000..27c731151 Binary files /dev/null and b/src/assets/images/game_selection/Gloomwood.png differ diff --git a/src/model/game/GameManager.ts b/src/model/game/GameManager.ts index 28bcc3689..e6ec2ecf6 100644 --- a/src/model/game/GameManager.ts +++ b/src/model/game/GameManager.ts @@ -681,6 +681,12 @@ export default class GameManager { "https://thunderstore.io/c/below-the-stone/api/v1/package/", EXCLUSIONS, [new StorePlatformMetadata(StorePlatform.STEAM, "1170230")], "BelowTheStone.png", GameSelectionDisplayMode.VISIBLE, GameInstanceType.GAME, PackageLoader.BEPINEX, ["bts"]), + + new Game("Gloomwood", "Gloomwood", "Gloomwood", + "Gloomwood", ["Gloomwood.exe"], "Gloomwood_Data", + "https://thunderstore.io/c/gloomwood/api/v1/package/", EXCLUSIONS, + [new StorePlatformMetadata(StorePlatform.STEAM, "1150760")], "Gloomwood.png", + GameSelectionDisplayMode.VISIBLE, GameInstanceType.GAME, PackageLoader.BEPINEX, ["gw"]), ]; static get activeGame(): Game { diff --git a/src/r2mm/installing/default_installation_rules/InstallationRuleApplicator.ts b/src/r2mm/installing/default_installation_rules/InstallationRuleApplicator.ts index 5ac0721b2..c56843274 100644 --- a/src/r2mm/installing/default_installation_rules/InstallationRuleApplicator.ts +++ b/src/r2mm/installing/default_installation_rules/InstallationRuleApplicator.ts @@ -134,6 +134,7 @@ export default class InstallationRuleApplicator { buildBepInExRules("SlipstreamRogueSpace"), buildBepInExRules("BacktotheDawn"), buildBepInExRules("BelowTheStone"), + buildBepInExRules("Gloomwood"), ] } } diff --git a/src/r2mm/installing/profile_installers/ModLoaderVariantRecord.ts b/src/r2mm/installing/profile_installers/ModLoaderVariantRecord.ts index 0bcd4a5e2..2a023b373 100644 --- a/src/r2mm/installing/profile_installers/ModLoaderVariantRecord.ts +++ b/src/r2mm/installing/profile_installers/ModLoaderVariantRecord.ts @@ -181,6 +181,7 @@ const VARIANTS = { SlipstreamRogueSpace: MODLOADER_PACKAGES, BacktotheDawn: MODLOADER_PACKAGES, BelowTheStone: MODLOADER_PACKAGES, + Gloomwood: MODLOADER_PACKAGES, }; // Exported separately from the definition in order to preserve the key names in the type definition. // Otherwise this would become [key: string] and we couldn't use the game names for type hinting elsewhere.