๐Ÿงช RPG JSON Game

This example shows how to define a turn-based RPG using only JSON โ€” no custom code or engine needed.

๐Ÿ“ฆ Example Schema

{
  "player": {
    "emoji": "๐Ÿง",
    "health": 10,
    "abilities": ["attack", "heal"]
  },
  "npcs": [
    {
      "id": "healer",
      "dialog": ["Need healing?", "Stay safe out there!"]
    }
  ],
  "quests": [
    {
      "id": "rescue-princess",
      "steps": ["Find castle", "Defeat boss", "Rescue princess"]
    }
  ]
}

๐ŸŽฎ Gameplay Behavior

  • Turn-based mechanics with condition triggers
  • Progression via quests and dialog
  • Inventory and health systems supported

๐Ÿ›  Deployment

You can deploy this example using the CLI:

npx create-gameer-app rpg-demo cd rpg-demo gameer generate --target json