-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGTASADE.ts
36 lines (34 loc) · 1.02 KB
/
GTASADE.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/**
* @description GTASADE 支持
*/
import { join } from "node:path"
export const supportedGames: ISupportedGames = {
GlossGameId: 258,
steamAppID: 1547000,
NexusMods: {
game_domain_name: 'grandtheftautothetrilogy',
game_id: 4142
},
installdir: join("GTA San Andreas - Definitive Edition", "Gameface", "Binaries", "Win64"),
gameName: "GTA San Andreas Definitive Edition",
gameExe: [
{
name: "SanAndreas.exe",
rootPath: join('..', '..', '..')
}
],
startExe: [
{
name: "Steam 启动",
cmd: "steam://rungameid/1547000"
},
{
name: "直接启动",
exePath: join("Gameface", "Binaries", "Win64", "SanAndreas.exe")
}
],
archivePath: join(FileHandler.getMyDocuments(), "Rockstar Games", "GTA San Andreas Definitive Edition"),
gameCoverImg: "imgs/gtasade_logo.jpg",
modType: UnrealEngine.modType("Gameface", false),
checkModType: UnrealEngine.checkModType
}