Added Stardew Valley to the Supported games list

This commit is contained in:
erri120 2019-12-15 12:08:01 +01:00
parent f4df8509f0
commit f3c8b26b1f
No known key found for this signature in database
GPG Key ID: A8C0A18D8D4D3135
2 changed files with 18 additions and 1 deletions

View File

@ -24,6 +24,7 @@ Wabbajack is an automated ModList installer that can recreate contents of a fold
| Darkest Dungeon | Steam, GOG| Vortex | |
| Divinity Original Sin 2 | Steam, GOG| Vortex | Normal and Definitive Edition |
| Starbound | Steam, GOG| Vortex | |
| Stardew Valley | Steam, GOG| Vortex | |
| SW: KotOR | Steam, GOG| Vortex | |
| SW: KotOR 2 | Steam, GOG| Vortex | |
| The Witcher | Steam, GOG| Vortex | Enhanced Edition |

View File

@ -38,7 +38,9 @@ namespace Wabbajack.Common
[Description("Witcher 2")]
Witcher2,
[Description("Witcher 3")]
Witcher3
Witcher3,
[Description("Stardew Valley")]
StardewValley
}
public static class GameExtentions
@ -369,6 +371,20 @@ namespace Wabbajack.Common
"bin\\x64\\witcher2.exe"
}
}
},
{
Game.StardewValley, new GameMetaData
{
SupportedModManager = ModManager.Vortex,
Game = Game.StardewValley,
NexusName = "stardewvalley",
SteamIDs = new List<int>{413150},
GOGIDs = new List<int>{1453375253},
RequiredFiles = new List<string>
{
"StardewValley.exe"
}
}
}
};
}