paia-hw3/game_config.json

56 lines
1.5 KiB
JSON

{
"game_name": "easy_game",
"version": "2.1.0",
"url": "https://github.com/PAIA-Playful-AI-Arena/easy_game",
"description": "這是一個吃東西小遊戲,除了讓你熟習所有基本操作,也是 PAIA 的遊戲教學範例",
"logo": [
"./asset/logo.svg",
"https://raw.githubusercontent.com/PAIA-Playful-AI-Arena/Paia-Desktop/master/media/easygame.svg"
],
"user_num": {
"min": 1,"max": 1
},
"game_params": [
{
"name": "time_to_play",
"verbose": "遊戲總幀數",
"type": "int",
"max": 2000,
"min": 600,
"default": 600,
"help": "set the limit of frame count , actually time will be revised according to your FPS ."
},
{
"name": "green_food_count",
"verbose": "綠色食物數量",
"type": "int",
"choices":[ 5 ,10 ,15,20,25,30,35,40,45,50],
"help": "set the total number of points",
"default": 10
}, {
"name": "black_food_count",
"verbose": "黑色食物數量",
"type": "int",
"choices":[ 5 ,10 ,15,20,25,30,35,40,45,50],
"help": "set the total number of points",
"default": 10
},
{
"name": "score_to_win",
"verbose": "通關分數",
"type": "int",
"min": 1,
"max": 30,
"default": 10,
"help": "set the score to win this game "
},
{
"name": "playground_size",
"verbose": "場地尺寸",
"type": "list",
"default": "500,400",
"help": "set the size of playground "
}
]
}