diff --git a/Wabbajack.Common/GameMetaData.cs b/Wabbajack.Common/GameMetaData.cs index 509b558b..d69a52fe 100644 --- a/Wabbajack.Common/GameMetaData.cs +++ b/Wabbajack.Common/GameMetaData.cs @@ -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{413150}, + GOGIDs = new List{1453375253}, + IsGenericMO2Plugin = true, + RequiredFiles = new List + { + "Stardew Valley.exe" + }, + MainExecutable = "Stardew Valley.exe" + } + } }; public static Dictionary ByNexusID =