Merge pull request #2248 from wabbajack-tools/valheim_support

add Game Support Valheim
This commit is contained in:
Luca 2022-12-22 11:35:52 +01:00 committed by GitHub
commit 3deeae06c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 21 additions and 2 deletions

View File

@ -1,8 +1,10 @@
### Changelog
#### Version - 3.0.x.x - TBD
* Fix Website Links
* Game Support:
* Game support:
* Added support for Valheim
* Added Cyberpunk 2077 Epic Games Store support
#### Version - 3.0.4.1 - 11/17/2022

View File

@ -48,5 +48,5 @@ public enum Game
[Description("Dragons Dogma Dark Arisen")] DragonsDogma,
[Description("Karryn's Prison")]
KarrynsPrison,
KarrynsPrison,[Description("Valheim")]Valheim,
}

View File

@ -492,6 +492,23 @@ public static class GameRegistry
},
MainExecutable = "nw.exe".ToRelativePath()
}
},
{
Game.Valheim, new GameMetaData
{
Game = Game.Valheim,
SteamIDs = new[] { 892970 },
MO2Name = "Valheim",
MO2ArchiveName = "valheim",
NexusName = "valheim",
NexusGameId = 3667,
IsGenericMO2Plugin = true,
RequiredFiles = new []
{
"valheim.exe".ToRelativePath()
},
MainExecutable = "valheim.exe".ToRelativePath()
}
}
};