implement_scenario
Integrate generated scenario content into RPG Maker MZ projects to add story elements, events, and narrative components to your game development workflow.
Instructions
Implement a generated scenario into the RPG Maker MZ project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_path | Yes | Path to the RPG Maker MZ project directory | |
scenario | Yes | Generated scenario object |
Input Schema (JSON Schema)
{
"properties": {
"project_path": {
"description": "Path to the RPG Maker MZ project directory",
"type": "string"
},
"scenario": {
"description": "Generated scenario object",
"type": "object"
}
},
"required": [
"project_path",
"scenario"
],
"type": "object"
}