add_skill
Add new skills to your RPG Maker MZ game database by specifying skill ID and name, enabling character abilities and combat mechanics development.
Instructions
Add a new skill to the database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Skill ID | |
name | Yes | Skill name | |
project_path | Yes | Path to the RPG Maker MZ project directory |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "Skill ID",
"type": "number"
},
"name": {
"description": "Skill name",
"type": "string"
},
"project_path": {
"description": "Path to the RPG Maker MZ project directory",
"type": "string"
}
},
"required": [
"project_path",
"id",
"name"
],
"type": "object"
}