Merge pull request #2556 from wabbajack-tools/starfield-meta-data

Add Starfield meta-data
This commit is contained in:
Luca 2024-05-25 19:14:09 +02:00 committed by GitHub
commit f1af0a739a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 21 additions and 1 deletions

View File

@ -1,5 +1,8 @@
### Changelog ### Changelog
#### Version - 3.6.1.0 - TBD
* Added Starfield meta data
#### Version - 3.6.0.0 - 5/25/2024 #### Version - 3.6.0.0 - 5/25/2024
* Wabbajack now uses OAuth2 for Nexus Mods logins * Wabbajack now uses OAuth2 for Nexus Mods logins
* Support for DirectURL use with LL files * Support for DirectURL use with LL files

View File

@ -54,5 +54,6 @@ public enum Game
[Description("Modding Tools")] ModdingTools, [Description("Modding Tools")] ModdingTools,
[Description("Final Fantasy VII Remake")] FinalFantasy7Remake, [Description("Final Fantasy VII Remake")] FinalFantasy7Remake,
[Description("Baldur's Gate 3")] BaldursGate3 [Description("Baldur's Gate 3")] BaldursGate3,
[Description("Starfield")] Starfield
} }

View File

@ -602,6 +602,22 @@ public static class GameRegistry
MainExecutable = @"bin/bg3.exe".ToRelativePath() MainExecutable = @"bin/bg3.exe".ToRelativePath()
} }
}, },
{
Game.Starfield, new GameMetaData
{
Game = Game.Starfield,
NexusName = "starfield",
NexusGameId = 4187,
MO2Name = "Starfield",
MO2ArchiveName = "Starfield",
SteamIDs = [1716740],
RequiredFiles = new []
{
@"Starfield.exe".ToRelativePath()
},
MainExecutable = @"Starfield.exe".ToRelativePath()
}
},
{ {
Game.ModdingTools, new GameMetaData Game.ModdingTools, new GameMetaData
{ {