generate_scenario_variations
Generate multiple scenario variations for RPG Maker MZ projects to compare different story approaches based on theme, style, and length parameters.
Instructions
Generate multiple variations of a scenario for comparison
Input Schema
Name | Required | Description | Default |
---|---|---|---|
api_key | No | Gemini API key (optional) | |
count | Yes | Number of variations to generate | |
length | Yes | Length of scenarios | |
project_path | Yes | Path to the RPG Maker MZ project directory | |
style | Yes | Style or tone | |
theme | Yes | Theme or genre |
Input Schema (JSON Schema)
{
"properties": {
"api_key": {
"description": "Gemini API key (optional)",
"type": "string"
},
"count": {
"description": "Number of variations to generate",
"type": "number"
},
"length": {
"description": "Length of scenarios",
"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",
"type": "string"
}
},
"required": [
"project_path",
"theme",
"style",
"length",
"count"
],
"type": "object"
}