search_database
Search RPG Maker MZ game databases to find actors, enemies, skills, and items using filters for name, ID range, and specific data types.
Instructions
Search game database (actors, enemies, skills, items, etc.) with filters
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id_max | No | Maximum ID | |
id_min | No | Minimum ID | |
name_contains | No | Filter by name containing text | |
project_path | Yes | Project path | |
types | No | Database types to search |
Input Schema (JSON Schema)
{
"properties": {
"id_max": {
"description": "Maximum ID",
"type": "number"
},
"id_min": {
"description": "Minimum ID",
"type": "number"
},
"name_contains": {
"description": "Filter by name containing text",
"type": "string"
},
"project_path": {
"description": "Project path",
"type": "string"
},
"types": {
"description": "Database types to search",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"project_path"
],
"type": "object"
}