Merge pull request #990 from ixanza/patch-1

Update GameMetaData.cs for Stardew Valley
This commit is contained in:
Timothy Baldridge 2020-07-31 19:49:43 -07:00 committed by GitHub
commit 1a03027c3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,7 +31,9 @@ namespace Wabbajack.Common
//MO2 Non-BGS Games
[Description("Darkest Dungeon")]
DarkestDungeon,
Witcher3
Witcher3,
[Description("Stardew Valley")]
StardewValley
}
public static class GameExtensions
@ -449,7 +451,24 @@ namespace Wabbajack.Common
},
MainExecutable = @"bin\x64\witcher3.exe"
}
}
},
{
Game.StardewValley, new GameMetaData
{
Game = Game.StardewValley,
NexusName = "stardewvalley",
MO2Name = "Stardew Valley",
NexusGameId = 1303,
SteamIDs = new List<int>{413150},
GOGIDs = new List<int>{1453375253},
IsGenericMO2Plugin = true,
RequiredFiles = new List<string>
{
"Stardew Valley.exe"
},
MainExecutable = "Stardew Valley.exe"
}
}
};
public static Dictionary<long, Game> ByNexusID =