aboutsummaryrefslogtreecommitdiff
path: root/libs/basic_games/games/game_monsterhunterworld.py
blob: 290048cdb7768b12174e4b0baf638654511ffb43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from ..basic_game import BasicGame


class MonsterHunterWorldGame(BasicGame):
    Name = "Monster Hunter: World Support Plugin"
    Author = "prz"
    Version = "1.0.0"

    GameName = "Monster Hunter: World"
    GameShortName = "monsterhunterworld"
    GameNexusName = "monsterhunterworld"
    GameNexusId = 2531
    GameBinary = "MonsterHunterWorld.exe"
    GameLauncher = "MonsterHunterWorld.exe"
    GameDataPath = "%GAME_PATH%"
    GameSaveExtension = "dat"
    GameSteamId = 582010
    GameSupportURL = (
        r"https://github.com/ModOrganizer2/modorganizer-basic_games/wiki/"
        "Game:-Monster-Hunter:-World"
    )