Skip to content

Commit c3fe986

Browse files
authored
Add basic support for Dark Souls II Scholar of the First Sin (#190)
1 parent c5d39b8 commit c3fe986

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

games/game_darksouls2sotfs.py

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

0 commit comments

Comments
 (0)