generate_and_implement_scenario
Create and automatically implement complete RPG scenarios in RPG Maker MZ projects. Specify theme, style, and length to generate story content, characters, and game events directly into your project directory.
Instructions
Generate and immediately implement a complete RPG scenario (all-in-one)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
api_key | No | Gemini API key (optional) | |
length | Yes | Length of the game scenario | |
project_path | Yes | Path to the RPG Maker MZ project directory | |
style | Yes | Style or tone | |
theme | Yes | Theme or genre of the game |
Input Schema (JSON Schema)
{
"properties": {
"api_key": {
"description": "Gemini API key (optional)",
"type": "string"
},
"length": {
"description": "Length of the game scenario",
"enum": [
"short",
"medium",
"long"
],
"type": "string"
},
"project_path": {
"description": "Path to the RPG Maker MZ project directory",
"type": "string"
},
"style": {
"description": "Style or tone",
"type": "string"
},
"theme": {
"description": "Theme or genre of the game",
"type": "string"
}
},
"required": [
"project_path",
"theme",
"style",
"length"
],
"type": "object"
}