extract_game_design_patterns
Extract common game design patterns from RPG Maker MZ projects, including event patterns and map layouts, to analyze and understand project structure.
Instructions
Extract common game design patterns from the project (event patterns, map layouts, etc.)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_path | Yes | Path to the RPG Maker MZ project directory |
Input Schema (JSON Schema)
{
"properties": {
"project_path": {
"description": "Path to the RPG Maker MZ project directory",
"type": "string"
}
},
"required": [
"project_path"
],
"type": "object"
}