aboutsummaryrefslogtreecommitdiff
path: root/libs/basic_games/games/game_darksouls2sotfs.py
diff options
context:
space:
mode:
Diffstat (limited to 'libs/basic_games/games/game_darksouls2sotfs.py')
-rw-r--r--libs/basic_games/games/game_darksouls2sotfs.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/libs/basic_games/games/game_darksouls2sotfs.py b/libs/basic_games/games/game_darksouls2sotfs.py
new file mode 100644
index 0000000..3f69d2a
--- /dev/null
+++ b/libs/basic_games/games/game_darksouls2sotfs.py
@@ -0,0 +1,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"
+ )