get_skills
Retrieve all skill data from RPG Maker MZ/MV projects to manage game mechanics and character abilities.
Instructions
Get all skills from the project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/skillTools.ts:7-10 (handler)The function that reads and returns all skills from Skills.json.
export async function getSkills(projectPath: string): Promise<Skill[]> { const skillsPath = getDataPath(projectPath, 'Skills.json'); return await readJsonFile<Skill[]>(skillsPath); }