From 079f75afdfb894b2e699d52beb0ad30dc6862231 Mon Sep 17 00:00:00 2001 From: Ben Orchard Date: Thu, 14 Aug 2025 21:01:41 +0100 Subject: [PATCH 1/2] add basic support for Dark Souls II SotFS --- games/game_darksouls2sotfs.py | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 games/game_darksouls2sotfs.py diff --git a/games/game_darksouls2sotfs.py b/games/game_darksouls2sotfs.py new file mode 100644 index 0000000..d136c56 --- /dev/null +++ b/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" + ) From 77bcdd3a17fd4a840a49f192622f5bd4381779e0 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 14 Aug 2025 20:08:22 +0000 Subject: [PATCH 2/2] [pre-commit.ci] Auto fixes from pre-commit.com hooks. --- games/game_darksouls2sotfs.py | 44 +++++++++++++++++------------------ 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/games/game_darksouls2sotfs.py b/games/game_darksouls2sotfs.py index d136c56..3f69d2a 100644 --- a/games/game_darksouls2sotfs.py +++ b/games/game_darksouls2sotfs.py @@ -1,22 +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" - ) +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" + )