added Dishonored

mainly to test the non MO2 dependent list compiler.
This commit is contained in:
Luca 2020-10-25 23:05:14 +01:00 committed by GitHub
parent 65a908aa1e
commit 607fb263d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,6 +34,7 @@ namespace Wabbajack.Common
//MO2 Non-BGS Games
[Description("Darkest Dungeon")]
DarkestDungeon,
Dishonored,
Witcher3,
[Description("Stardew Valley")]
StardewValley
@ -441,6 +442,22 @@ namespace Wabbajack.Common
MainExecutable = "_windows\\Darkest.exe"
}
},
{
Game.Dishonored, new GameMetaData
{
Game = Game.Dishonored,
NexusName = "dishonored",
MO2Name = "Dishonored",
NexusGameId = 802,
SteamIDs = new List<int> {205100},
GOGIDs = new List<int>{1701063787},
RequiredFiles = new List<string>
{
"Binaries\\Win32\\Dishonored.exe"
},
MainExecutable = "Binaries\\Win32\\Dishonored.exe"
}
},
{
Game.Witcher3, new GameMetaData
{
@ -484,3 +501,4 @@ namespace Wabbajack.Common
}
}