-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCultOfTheLamb.ts
More file actions
31 lines (28 loc) · 871 Bytes
/
CultOfTheLamb.ts
File metadata and controls
31 lines (28 loc) · 871 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
28
29
30
31
/**
* @description 咩咩启示录 支持
*/
import { join, basename, extname } from "node:path"
export const supportedGames: ISupportedGames = {
GlossGameId: 342,
steamAppID: 1313140,
Thunderstore: {
community_identifier: 'cult-of-the-lamb'
},
installdir: join("Cult Of The Lamb"),
gameName: "Cult Of The Lamb",
gameExe: "Cult Of The Lamb.exe",
startExe: [
{
name: "Steam 启动",
cmd: "steam://rungameid/1313140"
},
{
name: "直接启动",
exePath: join("Cult Of The Lamb.exe")
}
],
archivePath: join(FileHandler.GetAppData(), "LocalLow", "Massive Monster", "Cult Of The Lamb"),
gameCoverImg: "https://mod.3dmgame.com/static/upload/game/65f2c99bb3e08.webp",
modType: UnityGame.modType,
checkModType: UnityGame.checkModType
}