Merge pull request #2164 from wabbajack-tools/#2147_Add_Karryns_Prison_support

#2147 add karryns prison support
This commit is contained in:
erri120 2022-11-03 14:17:04 +01:00 committed by GitHub
commit b38ac3cd11
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 20 additions and 3 deletions

View File

@ -40,7 +40,7 @@ This is needed, since the EGS has no public database of its game IDs.
| Dragon Age 2 | Steam, Origin | | Experimental |
| Dragon Age Inquisition | Steam, Origin | | Experimental |
| Kerbal Space Program | Steam, GOG | | Experimental |
| Karryn's Prison | Steam | | Experimental |
**Note about games marked with experimental support**:

View File

@ -44,5 +44,8 @@ public enum Game
[Description("Terraria")] Terraria,
[Description("Cyberpunk 2077")] Cyberpunk2077,
[Description("The Sims 4")] Sims4,
[Description("Dragons Dogma Dark Arisen")] DragonsDogma
[Description("Dragons Dogma Dark Arisen")] DragonsDogma,
[Description("Karryn's Prison")]
KarrynsPrison,
}

View File

@ -451,7 +451,21 @@ public static class GameRegistry
@"DDDA.exe".ToRelativePath()
},
MainExecutable = @"DDDA.exe".ToRelativePath()
}
},
{
Game.KarrynsPrison, new GameMetaData
{
Game = Game.KarrynsPrison,
SteamIDs = new[] { 1619750 },
MO2Name = "Karryn's Prison",
MO2ArchiveName = "karrynsprison",
IsGenericMO2Plugin = false,
RequiredFiles = new []
{
"nw.exe".ToRelativePath()
},
MainExecutable = "nw.exe".ToRelativePath()
}
}
};