generate_scenario
Create complete RPG game scenarios with story, maps, characters, events, and items for RPG Maker MZ projects using AI generation based on theme, style, and length specifications.
Instructions
Generate a complete RPG game scenario using Gemini AI (story, maps, characters, events, items)
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 (e.g., 'lighthearted', 'dark', 'comedic', 'epic') | |
theme | Yes | Theme or genre of the game (e.g., 'fantasy adventure', 'sci-fi', 'horror') |
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 (e.g., 'lighthearted', 'dark', 'comedic', 'epic')",
"type": "string"
},
"theme": {
"description": "Theme or genre of the game (e.g., 'fantasy adventure', 'sci-fi', 'horror')",
"type": "string"
}
},
"required": [
"project_path",
"theme",
"style",
"length"
],
"type": "object"
}