get_armors
Retrieve all armor data from RPG Maker MZ/MV projects to access game equipment details for development and management tasks.
Instructions
Get all armors from the project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/itemTools.ts:23-26 (handler)The handler function that retrieves armor data from Armors.json.
export async function getArmors(projectPath: string): Promise<Armor[]> { const armorsPath = getDataPath(projectPath, 'Armors.json'); return await readJsonFile<Armor[]>(armorsPath); }