Backport CP2077 support to 2.5

This commit is contained in:
Timothy Baldridge 2021-11-27 18:33:01 -07:00 committed by GitHub
parent fed371a6f1
commit fdc5e515fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -55,7 +55,9 @@ namespace Wabbajack.Common
[Description("Kerbal Space Program")]
KerbalSpaceProgram,
[Description("Enderal Special Edition")]
EnderalSpecialEdition
EnderalSpecialEdition,
[Description("Cyberpunk 2077")]
Cyberpunk2077
}
public static class GameExtensions
@ -662,6 +664,23 @@ namespace Wabbajack.Common
},
MainExecutable = @"KSP_x64.exe"
}
},
{
Game.Cyberpunk2077, new GameMetaData
{
Game = Game.Cyberpunk2077,
SteamIDs = new[] {1091500},
GOGIDs = new [] {2093619782},
MO2Name = "Cyberpunk 2077",
NexusName = "cyberpunk2077",
NexusGameId = 3333,
IsGenericMO2Plugin = true,
RequiredFiles = new[]
{
@"REDprelauncher.exe".ToRelativePath()
},
MainExecutable = @"REDprelauncher.exe".ToRelativePath()
}
}
};