blob: 3f69d2aed96b9a65d623f3088f025a49566acf80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
from ..basic_game import BasicGame
class DarkSouls2SotfsGame(BasicGame):
Name = "DarkSouls2Sotfs"
Author = "raehik"
Version = "0.1.0"
GameName = "Dark Souls II: Scholar of the First Sin"
GameShortName = "darksouls2sotfs"
GameNexusName = "darksouls2"
GameNexusId = 482
GameSteamId = 335300
GameBinary = "Game/DarkSoulsII.exe"
GameDataPath = "Game"
GameDocumentsDirectory = "%USERPROFILE%/AppData/Roaming/DarkSoulsII"
GameSavesDirectory = "%USERPROFILE%/AppData/Roaming/DarkSoulsII"
GameSaveExtension = "sl2"
GameSupportURL = (
r"https://github.com/ModOrganizer2/modorganizer-basic_games/wiki/"
"Game:-Dark-Souls-2-Sotfs"
)
|