roll_dice
Generate random dice rolls using standard dice notation to simulate game mechanics or random events. Specify notation like '2d6' for multiple dice and rolls.
Instructions
Roll the dice with the given notation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
notation | Yes | ||
num_rolls | No |
Input Schema (JSON Schema)
{
"properties": {
"notation": {
"title": "Notation",
"type": "string"
},
"num_rolls": {
"default": 1,
"title": "Num Rolls",
"type": "integer"
}
},
"required": [
"notation"
],
"type": "object"
}