Add METAL GEAR SOLID 2 and 3 (Master Collection ver) support. (#133)

* Add METAL GEAR SOLID 2: Sons of Liberty support.
* Add METAL GEAR SOLID 3: Snake Eater Support.
This commit is contained in:
AkiraJkr
2024-01-28 19:21:37 +01:00
committed by GitHub
parent ed34be3a54
commit 47fc5744b0
3 changed files with 34 additions and 0 deletions
+2
View File
@@ -57,6 +57,8 @@ You can rename `modorganizer-basic_games-xxx` to whatever you want (e.g., `basic
| Dragon's Dogma: Dark Arisen — [GOG](https://www.gog.com/game/dragons_dogma_dark_arisen) / [STEAM](https://store.steampowered.com/app/367500/Dragons_Dogma_Dark_Arisen/) | [EzioTheDeadPoet](https://github.com/EzioTheDeadPoet) | [game_dragonsdogmadarkarisen.py](games/game_dragonsdogmadarkarisen.py) | |
| Dungeon Siege II — [GOG](https://www.gog.com/game/dungeon_siege_collection) / [STEAM](https://store.steampowered.com/app/39200/Dungeon_Siege_II/) | [Holt59](https://github.com/holt59/) | [game_dungeonsiege2.py](games/game_dungeonsiege2.py) | <ul><li>mod data checker</li></ul> |
| Kingdom Come: Deliverance — [GOG](https://www.gog.com/game/kingdom_come_deliverance) / [STEAM](https://store.steampowered.com/app/379430/Kingdom_Come_Deliverance/) / [Epic](https://store.epicgames.com/p/kingdom-come-deliverance) | [Silencer711](https://github.com/Silencer711) | [game_kingdomcomedeliverance.py](games/game_kingdomcomedeliverance.py) | <ul><li>profile specific cfg files</li></ul>|
| METAL GEAR SOLID 2: Sons of Liberty — [STEAM](https://store.steampowered.com/app/2131640/METAL_GEAR_SOLID_2_Sons_of_Liberty__Master_Collection_Version/)|[AkiraJkr](https://github.com/AkiraJkr)|[game_metalgearsolid2mc.py](games/game_metalgearsolid2mc.py)| |
| METAL GEAR SOLID 3: Snake Eater — [STEAM](https://store.steampowered.com/app/2131650/METAL_GEAR_SOLID_3_Snake_Eater__Master_Collection_Version/)|[AkiraJkr](https://github.com/AkiraJkr)|[game_metalgearsolid3mc.py](games/game_metalgearsolid3mc.py)| |
| Mirror's Edge — [GOG](https://www.gog.com/game/mirrors_edge) / [STEAM](https://store.steampowered.com/app/17410/Mirrors_Edge)|[EzioTheDeadPoet](https://eziothedeadpoet.github.io/AboutMe/)|[game_mirrorsedge.py](games/game_mirrorsedge.py)| |
| Mount & Blade II: Bannerlord — [GOG](https://www.gog.com/game/mount_blade_ii_bannerlord) / [STEAM](https://store.steampowered.com/app/261550/Mount__Blade_II_Bannerlord/) | [Holt59](https://github.com/holt59/) | [game_mountandblade2.py](games/game_mountandblade2.py) | <ul><li>mod data checker</li></ul> |
| No Man's Sky - [GOG](https://www.gog.com/game/no_mans_sky) / [Steam](https://store.steampowered.com/app/275850/No_Mans_Sky/)|[EzioTheDeadPoet](https://eziothedeadpoet.github.io/AboutMe/)|[game_nomanssky.py](games/game_nomanssky.py)| |
+17
View File
@@ -0,0 +1,17 @@
from ..basic_game import BasicGame
class MetalGearSolid2MCGame(BasicGame):
Name = (
"METAL GEAR SOLID 2: Sons of Liberty - Master Collection Version Support Plugin"
)
Author = "AkiraJkr"
Version = "1.0.0"
GameName = "METAL GEAR SOLID 2: Sons of Liberty - Master Collection Version"
GameShortName = "metalgearsolid2mc"
GameNexusName = "metalgearsolid2mc"
GameSteamId = 2131640
GameBinary = "METAL GEAR SOLID2.exe"
GameDataPath = ""
GameLauncher = "launcher.exe"
+15
View File
@@ -0,0 +1,15 @@
from ..basic_game import BasicGame
class MetalGearSolid3MCGame(BasicGame):
Name = "METAL GEAR SOLID 3: Snake Eater - Master Collection Version Support Plugin"
Author = "AkiraJkr"
Version = "1.0.0"
GameName = "METAL GEAR SOLID 3: Snake Eater - Master Collection Version"
GameShortName = "metalgearsolid3mc"
GameNexusName = "metalgearsolid3mc"
GameSteamId = 2131650
GameBinary = "METAL GEAR SOLID3.exe"
GameDataPath = ""
GameLauncher = "launcher.exe"