Skip to content

Commit

Permalink
Add Ready or Not support (#160)
Browse files Browse the repository at this point in the history
Include basic support for Ready or Not

Signed-off-by: Ryan Keane <[email protected]>
  • Loading branch information
Ra2-IFV authored Oct 3, 2024
1 parent 785be77 commit 21f738b
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions games/game_readyornot.py
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 21f738b

Please sign in to comment.