๐งช 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