Merge branch 'main' into #2159_Skyrim_GOG_Detection_Metadata

# Conflicts:
#	README.md
This commit is contained in:
EzioTheDeadPoet 2022-11-05 01:00:13 +01:00
commit 092ce40001
3 changed files with 38 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

@ -22,6 +22,7 @@ public enum Game
[Description("Fallout 4 VR")] Fallout4VR,
[Description("Darkest Dungeon")] DarkestDungeon,
Dishonored,
[Description("Witcher: Enhanced Edition ")]Witcher,
[Description("Witcher 3")] Witcher3,
[Description("Stardew Valley")] StardewValley,
@ -44,5 +45,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

@ -242,6 +242,23 @@ public static class GameRegistry
MainExecutable = @"Binaries\Win32\Dishonored.exe".ToRelativePath()
}
},
{
Game.Witcher, new GameMetaData
{
Game = Game.Witcher,
NexusName = "witcher",
NexusGameId = 150,
MO2Name = "The Witcher: Enhanced Edition",
MO2ArchiveName = "witcher",
SteamIDs = new[] {20900}, // normal and GotY
GOGIDs = new[] {1207658924}, // normal, GotY and both in packages
RequiredFiles = new[]
{
@"System\witcher.exe".ToRelativePath()
},
MainExecutable = @"System\witcher.exe".ToRelativePath()
}
},
{
Game.Witcher3, new GameMetaData
{
@ -457,7 +474,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()
}
}
};