-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathgame_config.json
77 lines (77 loc) · 1.92 KB
/
game_config.json
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"game_name": "TankMan",
"version": "0.7.1.1",
"url": "https://github.com/Jesse-Jumbo/TankMan",
"description": "坦克人(Tank Man),一款經典的雙人對戰遊戲,時間內率先擊殺對手獲勝,否則以分數高者獲勝,除了擊中對手外,破壞遊戲物件,以獲得更高積分。注意: 場上資源恢復皆須時間,先到者得,你需要這些補充品以提供前進和射擊的燃油和子彈。",
"logo": [
"./asset/image/TankMan.svg",
"https://raw.githubusercontent.com/Jesse-Jumbo/TankMan/main/asset/image/TankMan.svg"
],
"user_num": {
"min": 2,
"max": 6
},
"game_params": [
{
"name": "green_team_num",
"verbose": "A隊人數為:",
"type": "int",
"max": 5,
"min": 1,
"help": "set the number of green_team users.",
"default": 1
},
{
"name": "blue_team_num",
"verbose": "B隊人數為:",
"type": "int",
"max": 5,
"min": 1,
"help": "set the number of blue_team users.",
"default": 1
},
{
"name": "is_manual",
"verbose": "使否手動遊玩",
"type": "str",
"choices": [
{
"verbose": "是",
"value": "1"
},
{
"verbose": "否",
"value": ""
}
],
"help": "'1' can turn on the player rotate cool down .",
"default": 0
},
{
"name": "frame_limit",
"verbose": "遊戲總幀數(Frame)",
"type": "int",
"max": 3000,
"min": 30,
"default": 300,
"help": "set the frame number of game frame limit."
},
{
"name": "sound",
"verbose": "遊戲音效",
"type": "str",
"choices": [
{
"verbose": "開",
"value": "on"
},
{
"verbose": "關",
"value": "off"
}
],
"help": "'on' can turn on the sound.",
"default": "off"
}
]
}