Re-added Darkest Dungeons

This commit is contained in:
erri120 2020-06-11 17:45:26 +02:00
parent 26c15d11b8
commit f500a40bd7
No known key found for this signature in database
GPG Key ID: A8C0A18D8D4D3135

View File

@ -27,7 +27,10 @@ namespace Wabbajack.Common
[Description("Skyrim VR")]
SkyrimVR,
[Description("Fallout 4 VR")]
Fallout4VR
Fallout4VR,
//MO2 Non-BGS Games
[Description("Darkest Dungeon")]
DarkestDungeon
}
public static class GameExtensions
@ -43,6 +46,8 @@ namespace Wabbajack.Common
public Game Game { get; internal set; }
public ModManager SupportedModManager { get; internal set; }
public bool IsGenericMO2Plugin { get; internal set; }
public string? MO2ArchiveName { get; internal set; }
public string? NexusName { get; internal set; }
// Nexus DB id for the game, used in some specific situations
@ -395,6 +400,22 @@ namespace Wabbajack.Common
MainExecutable = "Fallout4VR.exe",
CommonlyConfusedWith = new [] {Game.Fallout4}
}
},
{
Game.DarkestDungeon, new GameMetaData
{
Game = Game.DarkestDungeon,
NexusName = "darkestdungeon",
MO2Name = "Darkest Dungeon",
NexusGameId = 804,
SteamIDs = new List<int> {262060},
GOGIDs = new List<int>{1450711444},
IsGenericMO2Plugin = true,
RequiredFiles = new List<string>
{
"_windows\\Darkest.exe"
}
}
}
};