create_campaign
Initiate a new Dungeons & Dragons campaign by defining its name, description, Dungeon Master, and setting. Simplifies campaign creation for organized gameplay and storytelling.
Instructions
Create a new D&D campaign.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | Yes | Brief decription of the campaign, or a tagline | |
dm_name | No | Dungeon Master name | |
name | Yes | Campaign name | |
setting | No | Campaign setting - a full description of the setting of the campaign in markdown format, or the path to a `.txt` or `.md` file containing the same. |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Brief decription of the campaign, or a tagline",
"title": "Description",
"type": "string"
},
"dm_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Dungeon Master name",
"title": "Dm Name"
},
"name": {
"description": "Campaign name",
"title": "Name",
"type": "string"
},
"setting": {
"anyOf": [
{
"type": "string"
},
{
"format": "path",
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "\n Campaign setting - a full description of the setting of the campaign in markdown format, or the path to a `.txt` or `.md` file containing the same.\n ",
"title": "Setting"
}
},
"required": [
"name",
"description"
],
"type": "object"
}