mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Re-added Darkest Dungeons
This commit is contained in:
parent
26c15d11b8
commit
f500a40bd7
@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user