We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5d39b8 commit c3fe986Copy full SHA for c3fe986
1 file changed
games/game_darksouls2sotfs.py
@@ -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