create_item
Generate a new consumable item for RPG Maker MV, including properties like name, price, effects, and usage scope. Returns a complete item object.
Instructions
Create a new item (consumable: potions, scrolls, etc.). Generates a complete RPG Maker MV item object.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Item name | |
| description | No | Item description | |
| price | No | Shop price | |
| consumable | No | Whether the item is consumed on use (default true) | |
| scope | No | Target scope: 1=single enemy, 7=all allies, 11=user | |
| occasion | No | When usable: 0=always, 1=battle, 2=menu, 3=never | |
| animationId | No | Animation ID when used | |
| effects | No | Array of effect objects {code, dataId, value1, value2} | |
| note | No | Note field for plugins | |
| iconIndex | No | Icon index | |
| itypeId | No | Item type ID | |
| traits | No | Array of trait objects {code, dataId, value} |