add_event
Log events in your Dungeons & Dragons campaign with details like type, title, description, session number, characters involved, location, importance, and tags for better tracking.
Instructions
Add an event to the adventure log.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
characters_involved | No | Characters involved in the event | |
description | Yes | Event description | |
event_type | Yes | Type of event | |
importance | No | Event importance (1-5) | |
location | No | Location where event occurred | |
session_number | No | Session number | |
tags | No | Tags for categorizing the event | |
title | Yes | Event title |
Input Schema (JSON Schema)
{
"properties": {
"characters_involved": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"description": "Characters involved in the event",
"title": "Characters Involved"
},
"description": {
"description": "Event description",
"title": "Description",
"type": "string"
},
"event_type": {
"description": "Type of event",
"enum": [
"combat",
"roleplay",
"exploration",
"quest",
"character",
"world",
"session"
],
"title": "Event Type",
"type": "string"
},
"importance": {
"default": 3,
"description": "Event importance (1-5)",
"maximum": 5,
"minimum": 1,
"title": "Importance",
"type": "integer"
},
"location": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Location where event occurred",
"title": "Location"
},
"session_number": {
"anyOf": [
{
"minimum": 1,
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"description": "Session number",
"title": "Session Number"
},
"tags": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"description": "Tags for categorizing the event",
"title": "Tags"
},
"title": {
"description": "Event title",
"title": "Title",
"type": "string"
}
},
"required": [
"event_type",
"title",
"description"
],
"type": "object"
}