Skip to content

Commit afa6461

Browse files
authored
Merge pull request #1607 from ebkr/add-game-i-am-your-beast
Add game I Am Your Beast
2 parents d993434 + 4fbf028 commit afa6461

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed

Diff for: src/assets/images/game_selection/IAmYourBeast.webp

24.1 KB
Binary file not shown.

Diff for: src/model/game/GameManager.ts

+6
Original file line numberDiff line numberDiff line change
@@ -847,6 +847,12 @@ export default class GameManager {
847847
"https://thunderstore.io/c/subterror/api/v1/package-listing-index/",
848848
[new StorePlatformMetadata(StorePlatform.STEAM, "2846060")], "Subterror.png",
849849
GameSelectionDisplayMode.VISIBLE, GameInstanceType.GAME, PackageLoader.BEPINEX, ["st"]),
850+
851+
new Game("I Am Your Beast", "IAmYourBeast", "I Am Your Beast",
852+
"I Am Your Beast", ["I Am Your Beast.exe"], "I Am Your Beast_Data",
853+
"https://thunderstore.io/c/i-am-your-beast/api/v1/package-listing-index/",
854+
[new StorePlatformMetadata(StorePlatform.STEAM, "1876590")], "IAmYourBeast.webp",
855+
GameSelectionDisplayMode.VISIBLE, GameInstanceType.GAME, PackageLoader.BEPINEX, ["iayb"]),
850856
];
851857

852858
static get activeGame(): Game {

Diff for: src/r2mm/installing/default_installation_rules/InstallationRuleApplicator.ts

+1
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,7 @@ export default class InstallationRuleApplicator {
157157
buildBepInExRules("ATLYSS"),
158158
buildBepInExRules("PeaksOfYore"),
159159
buildBepInExRules("Subterror"),
160+
buildBepInExRules("IAmYourBeast"),
160161
]
161162
}
162163
}

Diff for: src/r2mm/installing/profile_installers/ModLoaderVariantRecord.ts

+1
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,7 @@ const VARIANTS = {
211211
ATLYSS: MODLOADER_PACKAGES,
212212
PeaksOfYore: MODLOADER_PACKAGES,
213213
Subterror: MODLOADER_PACKAGES,
214+
IAmYourBeast: MODLOADER_PACKAGES,
214215
};
215216
// Exported separately from the definition in order to preserve the key names in the type definition.
216217
// Otherwise this would become [key: string] and we couldn't use the game names for type hinting elsewhere.

0 commit comments

Comments
 (0)