createGame
Initialize a new RPG adventure by supplying a complete game state with title, characters, and world details. Returns a unique game ID for subsequent updates.
Instructions
Create a new RPG game with complete initial state. Returns the created game with assigned gameId. Use updateGame or progressStory next to continue the game flow.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| initialStateInJson | Yes | Complete game state object. Must include title, characters array, and game world settings. Example: {"title": "Fantasy Adventure", "characters": [{"name": "Hero", "level": 1, "hp": 100}], "world": {"location": "Village", "time": "morning"}} |