-
Notifications
You must be signed in to change notification settings - Fork 0
/
game_config.json
53 lines (53 loc) · 1.38 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
{
"game_name": "pingpong",
"version": "3.0.2",
"url": "https://github.com/PAIA-Playful-AI-Arena/pingpong",
"description": "想要體驗一場有趣且刺激的乒乓球遊戲嗎?操控發球及反擊的時機讓對手無路可逃,喜歡快節奏的你一定要來體驗看看!",
"logo": [
"./asset/logo.png",
"https://raw.githubusercontent.com/PAIA-Playful-AI-Arena/pingpong/main/asset/logo.png"
],
"user_num": {
"min": 2,"max": 2
},
"game_params": [
{
"name": "difficulty",
"flag": "d",
"verbose": "遊戲模式",
"type": "str",
"choices": [
{
"verbose": "一般",
"value": "NORMAL"
},
{
"verbose": "困難",
"value": "HARD"
}
],
"help": "Specify the game style. Choices: %(choices)s",
"default": "NORMAL"
},
{
"name": "game_over_score",
"flag": "s",
"verbose": "獲勝分數",
"type": "int",
"min": 1,
"max": 15,
"help": "[Optional] The score that the game will be exited when either side reaches it.[default: %(default)s]",
"default": 3
},
{
"name": "init_vel",
"flag": "v",
"verbose": "起始球速",
"type": "int",
"min": 1,
"max": 30,
"help": "[Optional] The initial velocity of the ball. [default: %(default)s]",
"default": 7
}
]
}