mirror of
https://github.com/ModOrganizer2/modorganizer-basic_games.git
synced 2026-07-27 14:07:29 -07:00
26 lines
750 B
Python
26 lines
750 B
Python
from ..basic_game import BasicGame
|
|
|
|
|
|
class MassEffectLegendaryGame(BasicGame):
|
|
|
|
Name = "Mass Effect Legendary Edition Support Plugin"
|
|
Author = "LostDragonist"
|
|
Version = "1.0.0"
|
|
|
|
GameName = "Mass Effect: Legendary Edition"
|
|
GameShortName = "masseffectlegendaryedition"
|
|
GameBinary = "Game/Launcher/MassEffectLauncher.exe"
|
|
GameLauncher = "MassEffectLauncher.exe"
|
|
GameDataPath = "%GAME_PATH%"
|
|
GameDocumentsDirectory = (
|
|
"%USERPROFILE%/Documents/BioWare/Mass Effect Legendary Edition/Save"
|
|
)
|
|
GameSaveExtension = "pcsav"
|
|
GameSteamId = 1328670
|
|
GameOriginWatcherExecutables = (
|
|
"masseffectlauncher.exe",
|
|
"masseffect1.exe",
|
|
"masseffect2.exe",
|
|
"masseffect3.exe",
|
|
)
|