roll_dice
Use standard D&D notation to roll dice, with options for advantage or disadvantage, simplifying gameplay calculations for Dungeons & Dragons campaigns.
Instructions
Roll dice with D&D notation.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
advantage | No | Roll with advantage | |
dice_notation | Yes | Dice notation (e.g., '1d20', '3d6+2') | |
disadvantage | No | Roll with disadvantage |
Input Schema (JSON Schema)
{
"properties": {
"advantage": {
"default": false,
"description": "Roll with advantage",
"title": "Advantage",
"type": "boolean"
},
"dice_notation": {
"description": "Dice notation (e.g., '1d20', '3d6+2')",
"title": "Dice Notation",
"type": "string"
},
"disadvantage": {
"default": false,
"description": "Roll with disadvantage",
"title": "Disadvantage",
"type": "boolean"
}
},
"required": [
"dice_notation"
],
"type": "object"
}