Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add Baldur's Gate 3 meta data for the Generic MO2 Plugin. #2468

Merged
merged 2 commits into from
Dec 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

#### Version - TBD
* Added Support for Final Fantasy 7: Remake Intergrade
* Added Support for Baldur's Gate 3
* Very Work in Progress
* **NOT** Plug and Play for compiling and installing!

#### Version - 3.4.0.0 - 11/19/2023
* Fixed `--outputPath` not being used for the CLI `compile` (thanks to @majcosta for fixing that)
Expand Down
3 changes: 2 additions & 1 deletion Wabbajack.DTOs/Game/Game.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,6 @@ public enum Game
[Description("Valheim")]Valheim,
[Description("Modding Tools")] ModdingTools,

[Description("Final Fantasy VII Remake")] FinalFantasy7Remake
[Description("Final Fantasy VII Remake")] FinalFantasy7Remake,
[Description("Baldur's Gate 3")] BadlursGate3
}
18 changes: 18 additions & 0 deletions Wabbajack.DTOs/Game/GameRegistry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -551,6 +551,24 @@ public static class GameRegistry
MainExecutable = @"ff7remake.exe".ToRelativePath()
}
},
{
Game.BadlursGate3, new GameMetaData
{
Game = Game.BadlursGate3,
NexusName = "baldursgate3",
NexusGameId = 3474,
MO2Name = "Baldur's Gate 3",
MO2ArchiveName = "baldursgate3",
SteamIDs = [1086940],
GOGIDs = [1456460669],
IsGenericMO2Plugin = true,
RequiredFiles = new []
{
@"bin/bg3.exe".ToRelativePath()
},
MainExecutable = @"bin/bg3.exe".ToRelativePath()
}
},
{
Game.ModdingTools, new GameMetaData
{
Expand Down
Loading