add_class
Create new character classes in RPG Maker MZ projects by specifying class ID and name to expand game customization options.
Instructions
Add a new class to the database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Class ID | |
name | Yes | Class name | |
project_path | Yes | Path to the RPG Maker MZ project directory |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "Class ID",
"type": "number"
},
"name": {
"description": "Class name",
"type": "string"
},
"project_path": {
"description": "Path to the RPG Maker MZ project directory",
"type": "string"
}
},
"required": [
"project_path",
"id",
"name"
],
"type": "object"
}