{
  // 游戏名称
  "name": "${name || 'world'}",
  // 游戏标题
  "title": "${title || '游戏'}",
  // 游戏描述
  "description": "${description || '这是一个游戏'}",
  // 游戏主脚本 - 可自定义游戏初始化，一般情况不需要定义
  "main": "${main || 'index.js'}",
  // 游戏状态 - 1 正常 0 禁用
  "state": 1,
  // 游戏排序 - 数字越小越靠前
  "sort": 100,
  // 游戏类型 - 角色扮演rpg、卡牌游戏card、策略游戏strategy、模拟经营simulation
  "type": "${type || 'card'}"
}