From 21f738bcee76086e23817174ca6c6804f923871d Mon Sep 17 00:00:00 2001 From: IFV <96299096+Ra2-IFV@users.noreply.github.com> Date: Thu, 3 Oct 2024 00:50:51 -0700 Subject: [PATCH] Add Ready or Not support (#160) Include basic support for Ready or Not Signed-off-by: Ryan Keane --- games/game_readyornot.py | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 games/game_readyornot.py diff --git a/games/game_readyornot.py b/games/game_readyornot.py new file mode 100644 index 00000000..d436e38a --- /dev/null +++ b/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