MemoryMesh

add_currency

Represents a type of currency in the game world.

Input Schema

NameRequiredDescriptionDefault
currencyYes

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" }