update_database
Modify RPG Maker MZ database entries including Actors, Classes, Skills, Items, Weapons, and Armors by updating specific fields and values.
Instructions
Update an entry in any database (Actors, Classes, Skills, Items, Weapons, Armors, etc.)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
database | Yes | Database name (e.g., 'Actors', 'Classes', 'Skills', 'Items') | |
id | Yes | Entry ID | |
project_path | Yes | Path to the RPG Maker MZ project directory | |
updates | Yes | Object containing fields to update |
Input Schema (JSON Schema)
{
"properties": {
"database": {
"description": "Database name (e.g., 'Actors', 'Classes', 'Skills', 'Items')",
"type": "string"
},
"id": {
"description": "Entry ID",
"type": "number"
},
"project_path": {
"description": "Path to the RPG Maker MZ project directory",
"type": "string"
},
"updates": {
"description": "Object containing fields to update",
"type": "object"
}
},
"required": [
"project_path",
"database",
"id",
"updates"
],
"type": "object"
}