-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathGB4.ts
More file actions
27 lines (25 loc) · 748 Bytes
/
GB4.ts
File metadata and controls
27 lines (25 loc) · 748 Bytes
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
/**
* @description 高达创坏者 4 支持
*/
import { join } from "node:path"
export const supportedGames: ISupportedGames = {
GlossGameId: 388,
steamAppID: 1672500,
installdir: join("GBBBB"),
gameName: "GUNDAM BREAKER 4",
gameExe: "GB4.exe",
startExe: [
{
name: "Steam 启动",
cmd: "steam://rungameid/1672500"
},
{
name: "直接启动",
exePath: join("GB4.exe")
}
],
archivePath: join(FileHandler.GetAppData(), "Local", "GB4", "Saved"),
gameCoverImg: "https://mod.3dmgame.com/static/upload/mod/202410/MOD670635775ec6c.webp@webp",
modType: UnrealEngine.modType("GB4", false),
checkModType: UnrealEngine.checkModType
}