create_map
Create a new map in your RPG Maker MZ project by specifying map ID, name, and dimensions to build game worlds and environments.
Instructions
Create a new map in the project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| height | No | Map height in tiles (default: 13) | |
| map_id | Yes | Map ID number | |
| name | Yes | Map name | |
| project_path | Yes | Path to the RPG Maker MZ project directory | |
| width | No | Map width in tiles (default: 17) |
Input Schema (JSON Schema)
{
"properties": {
"height": {
"description": "Map height in tiles (default: 13)",
"type": "number"
},
"map_id": {
"description": "Map ID number",
"type": "number"
},
"name": {
"description": "Map name",
"type": "string"
},
"project_path": {
"description": "Path to the RPG Maker MZ project directory",
"type": "string"
},
"width": {
"description": "Map width in tiles (default: 17)",
"type": "number"
}
},
"required": [
"project_path",
"map_id",
"name"
],
"type": "object"
}