Merge pull request #2162 from wabbajack-tools/#1958_Witcher_Enhanced_Edition_Support

#1958 witcher enhanced edition support
This commit is contained in:
Luca 2022-11-03 15:45:33 +01:00 committed by GitHub
commit 022eb135e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 0 deletions

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,

View File

@ -236,6 +236,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
{