Files

37 lines
1014 B
Python
Raw Permalink Normal View History

from PyQt6.QtCore import QFileInfo
2025-04-25 08:23:10 +02:00
import mobase
2020-12-29 22:20:54 +01:00
from ..basic_game import BasicGame
class NoMansSkyGame(BasicGame):
2021-02-19 19:52:07 +01:00
Name = "No Man's Sky Support Plugin"
2020-12-29 22:20:54 +01:00
Author = "Luca/EzioTheDeadPoet"
Version = "1.0.0"
2021-02-19 19:49:53 +01:00
GameName = "No Man's Sky"
2020-12-29 22:20:54 +01:00
GameShortName = "nomanssky"
GameNexusName = "nomanssky"
GameNexusId = 1634
2020-12-29 22:20:54 +01:00
GameSteamId = 275850
GameGogId = 1446213994
GameBinary = "Binaries/NMS.exe"
2025-03-14 10:56:00 -04:00
GameDataPath = "GAMEDATA/MODS"
2021-12-27 00:57:18 -07:00
GameSupportURL = (
r"https://github.com/ModOrganizer2/modorganizer-basic_games/wiki/"
"Game:-No-Man's-Sky"
)
def executables(self):
return [
mobase.ExecutableInfo(
"No Man's Sky",
QFileInfo(self.gameDirectory().absoluteFilePath(self.binaryName())),
),
mobase.ExecutableInfo(
"No Man's Sky VR",
QFileInfo(self.gameDirectory().absoluteFilePath(self.binaryName())),
).withArgument("-HmdEnable 1"),
]