add starfield meta-data

This commit is contained in:
EzioTheDeadPoet 2024-05-24 18:43:14 +02:00
parent 8daa2d1b63
commit d0f508849c
2 changed files with 18 additions and 1 deletions

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 = 4187f
MO2Name = "Starfield",
MO2ArchiveName = "Starfield",
SteamIDs = [1716740],
RequiredFiles = new []
{
@"Starfield.exe".ToRelativePath()
},
MainExecutable = @"Starfield.exe".ToRelativePath()
}
},
{ {
Game.ModdingTools, new GameMetaData Game.ModdingTools, new GameMetaData
{ {