generate_asset
Create RPG Maker MZ game assets including characters, faces, tilesets, and battle backgrounds using AI generation with text prompts.
Instructions
Generate RPG Maker MZ asset using Gemini 2.5 Flash (characters, faces, tilesets, etc.)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
api_key | No | Gemini API key (optional, uses GEMINI_API_KEY env var if not provided) | |
asset_type | Yes | Type of asset to generate | |
filename | Yes | Filename for the generated asset (with extension) | |
project_path | Yes | Path to the RPG Maker MZ project directory | |
prompt | Yes | Description of the asset to generate |
Input Schema (JSON Schema)
{
"properties": {
"api_key": {
"description": "Gemini API key (optional, uses GEMINI_API_KEY env var if not provided)",
"type": "string"
},
"asset_type": {
"description": "Type of asset to generate",
"enum": [
"character",
"face",
"tileset",
"battleback",
"enemy",
"sv_actor",
"picture"
],
"type": "string"
},
"filename": {
"description": "Filename for the generated asset (with extension)",
"type": "string"
},
"project_path": {
"description": "Path to the RPG Maker MZ project directory",
"type": "string"
},
"prompt": {
"description": "Description of the asset to generate",
"type": "string"
}
},
"required": [
"project_path",
"asset_type",
"prompt",
"filename"
],
"type": "object"
}