aboutsummaryrefslogtreecommitdiff
path: root/libs/basic_games/games/game_readyornot.py
diff options
context:
space:
mode:
Diffstat (limited to 'libs/basic_games/games/game_readyornot.py')
-rw-r--r--libs/basic_games/games/game_readyornot.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/libs/basic_games/games/game_readyornot.py b/libs/basic_games/games/game_readyornot.py
new file mode 100644
index 0000000..d436e38
--- /dev/null
+++ b/libs/basic_games/games/game_readyornot.py
@@ -0,0 +1,24 @@
+from ..basic_game import BasicGame
+
+
+class ReadyOrNotGame(BasicGame):
+ Name = "Ready or Not Support Plugin"
+ Author = "Ra2-IFV"
+ Version = "0.0.0.1"
+
+ GameName = "Ready or Not"
+ GameShortName = "readyornot"
+ GameNexusName = "readyornot"
+ GameValidShortNames = ["ron"]
+ # GameNexusId = "readyornot"
+ GameBinary = "ReadyOrNot/Binaries/Win64/ReadyOrNot-Win64-Shipping.exe"
+ GameLauncher = "ReadyOrNot.exe"
+ GameDataPath = "ReadyOrNot/Content/Paks"
+ GameDocumentsDirectory = "%USERPROFILE%/AppData/Local/ReadyOrNot"
+ GameIniFiles = [
+ "%GAME_DOCUMENTS%/Saved/Config/Windows/Game.ini",
+ "%GAME_DOCUMENTS%/Saved/Config/Windows/GameUserSettings.ini",
+ ]
+ GameSavesDirectory = "%USERPROFILE%/AppData/Local/ReadyOrNot/Saved/SaveGames"
+ GameSaveExtension = "sav"
+ GameSteamId = 1144200