get_map_infos
Retrieve comprehensive data about all maps in your RPG Maker MZ/MV project to manage game assets and structure.
Instructions
Get information about all maps
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/mapTools.ts:127-130 (handler)The getMapInfos function reads the MapInfos.json file to return map information.
export async function getMapInfos(projectPath: string): Promise<any[]> { const mapInfosPath = getDataPath(projectPath, 'MapInfos.json'); return await readJsonFile<any[]>(mapInfosPath); }