Merge pull request #58 from erri120/sw-eaw-foc

Add STAR WARS™ Empire at War: Gold Pack
This commit is contained in:
Mikaël Capelle
2021-08-01 13:04:18 +02:00
committed by GitHub
3 changed files with 61 additions and 0 deletions
+1
View File
@@ -61,6 +61,7 @@ You can rename `modorganizer-basic_games-xxx` to whatever you want (e.g., `basic
| No Man's Sky - [GOG](https://www.gog.com/game/no_mans_sky) / [Steam](https://store.steampowered.com/app/275850/No_Mans_Sky/)|[EzioTheDeadPoet](https://eziothedeadpoet.github.io/AboutMe/)|[game_nomanssky.py](games/game_nomanssky.py)| |
| S.T.A.L.K.E.R. Anomaly — [MOD](https://www.stalker-anomaly.com/) | [Qudix](https://github.com/Qudix) | [game_stalkeranomaly.py](games/game_stalkeranomaly.py) | <ul><li>mod data checker</li></ul> |
| Stardew Valley — [GOG](https://www.gog.com/game/stardew_valley) / [STEAM](https://store.steampowered.com/app/413150/Stardew_Valley/) | [Syer10](https://github.com/Syer10), [Holt59](https://github.com/holt59/) | [game_stardewvalley.py](games/game_stardewvalley.py) | <ul><li>mod data checker</li></ul> |
| STAR WARS™ Empire at War: Gold Pack - [GOG](https://www.gog.com/game/star_wars_empire_at_war_gold_pack) / [STEAM](https://store.steampowered.com/app/32470/) | [erri120](https://github.com/erri120) | <ul><li>Empire at War: [game_starwars-empire-at-war.py](games/game_starwars-empire-at-war.py)</li><li>Force of Corruption: [game_starwars-empire-at-war-foc.py](games/game_starwars-empire-at-war-foc.py)</li></ul> | |
| The Witcher 3: Wild Hunt — [GOG](https://www.gog.com/game/the_witcher_3_wild_hunt) / [STEAM](https://store.steampowered.com/app/292030/The_Witcher_3_Wild_Hunt/) | [Holt59](https://github.com/holt59/) | [game_witcher3.py](games/game_witcher3.py) | <ul><li>save game preview</li></ul> |
| Zeus and Poseidon — [GOG](https://www.gog.com/game/zeus_poseidon) / [STEAM](https://store.steampowered.com/app/566050/Zeus__Poseidon/) | [Holt59](https://github.com/holt59/) | [game_zeusandpoiseidon.py](games/game_zeusandpoiseidon.py) | <ul><li>mod data checker</li></ul> |
+30
View File
@@ -0,0 +1,30 @@
# -*- encoding: utf-8 -*-
import mobase
from PyQt5.QtCore import QFileInfo
from ..basic_game import BasicGame
from typing import List
class StarWarsEmpireAtWarGame(BasicGame):
Name = "STAR WARS Empire at War - Force of Corruption"
Author = "erri120"
Version = "1.0.0"
GameName = "STAR WARS™ Empire at War: Forces of Corruption"
GameShortName = "starwarsempireatwar"
GameNexusName = "starwarsempireatwar"
GameNexusId = 453
GameSteamId = 32470
GameGogId = 1421404887
# using StarWarsG.exe instead of swfoc.exe because it has an icon
GameBinary = "corruption/StarWarsG.exe"
GameDataPath = "corruption/Data"
def executables(self) -> List[mobase.ExecutableInfo]:
return [
mobase.ExecutableInfo(
"STAR WARS Empire at War: Forces of Corruption",
QFileInfo(self.gameDirectory().absoluteFilePath(self.binaryName())),
)
]
+30
View File
@@ -0,0 +1,30 @@
# -*- encoding: utf-8 -*-
import mobase
from PyQt5.QtCore import QFileInfo
from ..basic_game import BasicGame
from typing import List
class StarWarsEmpireAtWarGame(BasicGame):
Name = "STAR WARS Empire at War"
Author = "erri120"
Version = "1.0.0"
GameName = "STAR WARS™ Empire at War"
GameShortName = "starwarsempireatwar"
GameNexusName = "starwarsempireatwar"
GameNexusId = 453
GameSteamId = 32470
GameGogId = 1421404887
# using StarWarsG.exe instead of sweaw.exe because it has an icon
GameBinary = "GameData/StarWarsG.exe"
GameDataPath = "GameData/Data"
def executables(self) -> List[mobase.ExecutableInfo]:
return [
mobase.ExecutableInfo(
"STAR WARS Empire at War",
QFileInfo(self.gameDirectory().absoluteFilePath(self.binaryName())),
)
]