add_currency
Define and manage custom in-game currencies by specifying name, owner, and quantity. Integrates with MemoryMesh to enhance game world economy and player experiences.
Instructions
Represents a type of currency in the game world.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
currency | Yes |
Input Schema (JSON Schema)
{
"properties": {
"currency": {
"additionalProperties": {
"description": "Additional property value",
"type": "string"
},
"properties": {
"description": {
"description": "A brief description of the currency.",
"type": "string"
},
"name": {
"description": "The name of the currency.",
"type": "string"
},
"owner": {
"description": "The relationship between the currency and its owner.",
"items": {
"description": "Item in owner array",
"type": "string"
},
"type": "array"
},
"quantity": {
"description": "The amount of this currency owned.",
"type": "string"
}
},
"required": [
"name",
"owner",
"quantity"
],
"type": "object"
}
},
"required": [
"currency"
],
"type": "object"
}