add_faction
Create and define a faction or organization within the MemoryMesh game world by specifying its name, type, description, goals, and leader for immersive storytelling and gameplay.
Instructions
A faction or organization operating within the game world.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
faction | Yes |
Input Schema (JSON Schema)
{
"properties": {
"faction": {
"additionalProperties": {
"description": "Additional property value",
"type": "string"
},
"properties": {
"description": {
"description": "A detailed description of the faction.",
"type": "string"
},
"goals": {
"description": "The main objectives or goals of the faction.",
"items": {
"description": "Item in goals array",
"type": "string"
},
"type": "array"
},
"leader": {
"description": "The entity leading this faction.",
"items": {
"description": "Item in leader array",
"type": "string"
},
"type": "array"
},
"name": {
"description": "The name of the faction or organization.",
"type": "string"
},
"type": {
"description": "The type of the faction.",
"type": "string"
}
},
"required": [
"name",
"type",
"description"
],
"type": "object"
}
},
"required": [
"faction"
],
"type": "object"
}