Add basic support for Dark Souls II Scholar of the First Sin (#190)

This commit is contained in:
Ben Orchard
2025-08-15 11:29:26 +02:00
committed by GitHub
parent c5d39b83b2
commit c3fe98601f
+22
View File
@@ -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"
)