add_item
Add a new item to the RPG Maker MZ game database by specifying the project path, item ID, and name for game development.
Instructions
Add a new item to the database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Item ID | |
name | Yes | Item name | |
project_path | Yes | Path to the RPG Maker MZ project directory |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "Item ID",
"type": "number"
},
"name": {
"description": "Item name",
"type": "string"
},
"project_path": {
"description": "Path to the RPG Maker MZ project directory",
"type": "string"
}
},
"required": [
"project_path",
"id",
"name"
],
"type": "object"
}