create_damage_skill
Creates a damage-dealing skill for RPG Maker MZ by specifying damage formula, MP cost, and target scope. Supports optional element and dry-run preview.
Instructions
Create a damage-dealing skill (simplified)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Skill name | |
| scope | Yes | Target scope (1=enemy single, 2=enemy all) | |
| dryRun | No | Preview only: return a diff of what would change without writing to disk. | |
| mpCost | Yes | MP cost | |
| elementId | No | Element ID (0=none, 2=fire, 3=ice, 4=thunder) | |
| description | No | Skill description | |
| damageFormula | Yes | Damage formula (e.g., "a.mat * 4") |