read_map
Extract and access specific map data from RPG Maker MZ projects to analyze map configurations, event structures, and terrain layouts for game development workflows.
Instructions
Read a specific map file from an RPG Maker MZ project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
map_id | Yes | Map ID (e.g., 'Map001') | |
project_path | Yes | Path to the RPG Maker MZ project directory |
Input Schema (JSON Schema)
{
"properties": {
"map_id": {
"description": "Map ID (e.g., 'Map001')",
"type": "string"
},
"project_path": {
"description": "Path to the RPG Maker MZ project directory",
"type": "string"
}
},
"required": [
"project_path",
"map_id"
],
"type": "object"
}