create_project
Create a new RPG Maker MZ project from scratch by specifying the project path and game title to initiate game development.
Instructions
Create a new RPG Maker MZ project from scratch
Input Schema
Name | Required | Description | Default |
---|---|---|---|
game_title | Yes | Title of the game | |
project_path | Yes | Path where the project will be created |
Input Schema (JSON Schema)
{
"properties": {
"game_title": {
"description": "Title of the game",
"type": "string"
},
"project_path": {
"description": "Path where the project will be created",
"type": "string"
}
},
"required": [
"project_path",
"game_title"
],
"type": "object"
}