roll_dice
Simulate dice rolls using standard notation (e.g., '2d6+3', '1d20-2') for tabletop games, RPGs, or probability testing. Input the notation to generate results instantly.
Instructions
Roll dice using standard notation (e.g., '2d6+3', '1d20-2')
Input Schema
Name | Required | Description | Default |
---|---|---|---|
notation | Yes | Dice notation (e.g., '2d6+3', '1d20-2') |
Input Schema (JSON Schema)
{
"properties": {
"notation": {
"description": "Dice notation (e.g., '2d6+3', '1d20-2')",
"pattern": "^\\d+d\\d+([+-]\\d+)?$",
"type": "string"
}
},
"required": [
"notation"
],
"type": "object"
}