Inline dice rolling for Obsidian.md.
Simply place a code block with your formula in your note (such as `dice: XdX`
) and in preview mode it will be replaced with the result of the dice rolls. The result can then be re-rolled by clicking on it.
Don't want to see the dice button on results? You can turn it off in settings, or by appending
|nodice
to any dice roll!
The parser supports addition, subtraction, multiplication, division, and exponents of an arbitrary number of dice or static numbers. Spaces are removed before the formula is parsed.
There is full order-of-operations support, so it can even nested into parentheses!
Examples |
---|
`dice: 1d2` |
`dice: 3d4 + 3` |
`dice: 1d12 + 1d10 + 5` |
`dice: 3d4+3d4-(3d4 * 1d4) - 2^1d7` |
The plugin has basic support for Dataview inline fields in number dice.
Please note that if you have multiple inline fields of the same name, the plugin will only use one, and it is not possible to control the one it uses - it will be the last field indexed by Dataview.
Example:
field:: 3
field2:: 5
`dice: field`
`dice: 1d6 + field`
`dice: 1d6*field2 + field`
The faces can be supplied as either a raw number or as a [min, max]
array.
Example: `dice: 1d[3,5]`
will roll 1 die between 3 and 5.
Both the number of rolls and the faces can be omitted.
Roll will default to 1
.
Faces will default to 100
.
These defaults can be changed in settings.
The parser supports percentile dice. `dice: Xd%`
will roll X d100 dice.
Use `dice: XdF`
to roll a fudge/fate dice. See here for more info on this type of dice.
Use `dice: 1dS`
to roll a Fantasy AGE stunt dice. The result will show the total roll and also the stunt points if successful.
The parser supports several modifiers. If a die has been modified, it will display how it has been modified in the tooltip.
Modifiers are only supported on basic number dice.
If a modifier has a parameter, it will default to 1 if not provided.
Modifier | Syntax | Description |
---|---|---|
Min/Max | Xd[Y, Z] |
Roll a dice with minimum Y, maximum Z. |
Keep Highest | k{n} /kh{n} |
Keep highest {n} dice. |
Keep Lowest | kl{n} |
Keep lowest {n} dice. |
Drop Lowest | d{n} /dl{n} |
Drop lowest {n} dice. |
Drop Highest | dh{n} |
Drop highest {n} dice. |
Explode | !{n} , !i |
Explode dice {n} times. If i is provided, will explode "infinitely" (capped at 100). |
Explode & Combine | !!{n} , !!i |
Same as explode, but exploded dice are summed in the display instead of being shown individually. |
Re-roll | r{n} , ri |
Re-roll a minimum dice {n} times. If i is provided, will re-roll "infinitely" (capped at 100). |
Create a custom die, with a minimum of Y and a maximum of Z.
Formula | Result |
---|---|
dice: 4d[7, 8] |
[7, 7, 8, 7] |
dice: 1d[20, 20] |
[20] |
Keeps highest {n}
rolls. {n}
is optional, and will default to 1. Dropped dice will display as Nd
.
Formula | Result |
---|---|
dice: 2d20k / dice: 2d20kh |
[7d, 18] = 18 |
dice: 4d20k2 / dice: 4d20kh2 |
[4d, 12, 15, 3d = 27 |
Keeps lowest {n}
rolls. {n}
is optional, and will default to 1. Dropped dice will display as Nd
.
Formula | Result |
---|---|
dice: 2d20kl |
[7, 18d] = 7 |
dice: 4d20kl2 |
[4, 12d, 15d, 3] = 7 |
Drops lowest {n}
rolls. {n}
is optional, and will default to 1. Dropped dice will display as Nd
.
Formula | Result |
---|---|
dice: 2d20d / dice: 2d20dl |
[7d, 18] = 18 |
dice: 4d20d2 / dice: 4d20dl2 |
[4d, 12, 15, 3d = 27 |
Keeps lowest {n}
rolls. {n}
is optional, and will default to 1. Dropped dice will display as Nd
.
Formula | Result |
---|---|
dice: 2d20dh |
[7, 18d] = 7 |
dice: 4d20dh2 |
[4, 12d, 15d, 3 = 7 |
Explode will roll an additional die for each maximum die roll. If {n}
or {i}
is provided, it will continue exploding until a number less than the maximum is rolled, or {n}
attempts have been made. {i}
is capped at 100 rolls to prevent abuse.
Exploded dice will display as N!
.
Formula | Result |
---|---|
dice: 2d20! |
[7, 20!, 8] = 35 |
dice: 2d4!3 |
[3, 4!, 4!, 2] = 13 |
dice: 1d1!i |
[1!, 1!, 1!, ... , 1!, 1!, 1] = 100 |
Equivalent to explode, but exploded dice are combined in the tooltip display.
Formula | Result |
---|---|
dice: 2d20!! |
[7, 28!] = 34 |
dice: 2d4!!3 |
[3, 10!] = 13 |
dice: 1d1!!i |
[100!] = 100 |
Re-roll a minimum dice. If {n}
or {i}
is provided, it will continue re-rolling until a number greater than the minimum is rolled, or {n}
attempts have been made.
Re-rolled dice replace their original roll, unlike explode, which add new rolls.
Re-rolled dice will display as Xr
in the tooltip.
Formula | Result |
---|---|
dice: 2d20r |
[7r, 18] = 15 |
dice: 2d4r3 |
[3, 3r] = 6 |
dice: 1d2ri |
[2r] = 2 |
Dice rolls support conditional parameters as of version 6.0.0. This allows you to specify a set of requirements, one of which the dice must meet to be included in the roll. If the dice meets this requirement, it will be considered a 1
(pass), and if it does not, it will be considered a 0
(failure).
Additionally, a negative equals
condition may be supplied; if the dice meet this requirement, it will be considered a -1
.
The following conditions are supported:
Condition | Effect |
---|---|
={n} |
Only rolls that are equal to {n} are successful. |
=!{n} * |
Only rolls that are not equal to {n} are successful. |
>{n} |
Only rolls that are greater than {n} are successful. |
<{n} |
Only rolls that are less than {n} are successful. |
>={n} |
Only rolls that are greater than or equal to {n} are successful. |
<={n} |
Only rolls that are less than or equal to {n} are successful. |
-={n} or =-{n} |
Rolls equal to {n} will be considered -1. |
*Note that !={n}
is supported as a dice condition due to a collision with Explode. If necessary, use =!{n}
.
The Explode, Explode and Combine and Re-roll modifiers each support an optional condition operator. If provided, the condition operator changes the die rolls that the modifier is applied to.
Supported Conditions:
Condition | Effect |
---|---|
={n} |
Only rolls that are equal to {n} are modified. |
!={n} * or =!{n} |
Only rolls that are not equal to {n} are modified. |
>{n} |
Only rolls that are greater than {n} are modified. |
<{n} |
Only rolls that are less than {n} are modified. |
>={n} |
Only rolls that are greater than or equal to {n} are modified. |
<={n} |
Only rolls that are less than or equal to {n} are modified. |
*Not supported as the first conditional on a parameterless Explode due to a collision with Explode and Combine. If necessary, use =!{n}
.
These conditions are fully chainable.
Formula | Description | Result |
---|---|---|
dice: 1d4!=3 |
Explode rolls equal to 3 | [4, 2, 3!, 2] = 11 |
dice: 1d4!i!=3 |
Explode rolls not equal to 3 infinitely | [4!, 2!, 3, 2!, 3, 2!, 1!, 4!, 3] = 24 |
dice: 1d4r<3 |
Re-roll rolls less than 3 | [4, 1, 2, 4] -> [4, 4r, 3r, 4] = 15 |
dice: 1d4r<2>3 |
Re-roll rolls less than 2, greater than 3 | [4, 1, 2, 4] -> [3r, 2r, 2, 2r] = 9 |
The Dice Roller can be given a link to a note or a tag, and it will return a random block from the note/notes.
This feature is still under development and may not work as expected.
Ctrl / Command - clicking a result will open the associated note.
Usage:
Example | Result |
---|---|
`dice: [[Note]]` |
Returns a single random block from Note |
`dice: 3d[[Note]]` |
Returns 3 random blocks from Note |
Obsidian has several "types" of blocks. Currently, the default behavior of the plugin is to filter out thematicBreak and yaml from the returned results.
To return a specific block type, you may append |<type>
to the end of any block roller. These can be chained by separating them with a comma.
Usage:
Example | Result |
---|---|
`dice: [[Note]]|paragraph` |
Return paragraph blocks |
`dice: #tag|paragraph,heading,yaml` |
Return paragraph , heading , and yaml blocks |
`dice: #tag|-|paragraph,heading,yaml` |
Return paragraph , heading , and yaml blocks from a single, random note |
I do not have any control over what Obsidian consider's each block (for instance, images may be returned as paragraph
).
I believe that this is a list of block types defined in Obsidian, but use this with a grain of salt.
Type |
---|
blockquote |
break |
code |
delete |
emphasis |
footnoteReference |
footnote |
heading |
html |
imageReference |
image |
inlineCode |
linkReference |
link |
listItem |
list |
paragraph |
root |
strong |
table |
text |
thematicBreak |
toml |
yaml |
definition |
footnoteDefinition |
The Dice Roller can be told to return a random line from any note using the following syntax:
`dice: [[Note]]|line`
Note: The plugin will filter out zero-length lines, but depending on note content, you may still get "blank" lines.
The Dice Roller can also be told to return results from a tag if the Dataview plugin is installed.
By default, this will return 1 result from every file that has the tag. You can change this behavior in settings, or by using the following optional +
and -
parameters as shown below.
If results from multiple files are returned, the result from that file can be re-rolled by clicking on the block. Clicking on the container or the dice icon will re-roll all returned results.
Tag dice support the same block-type parameters as above.
Example | Result |
---|---|
`dice: #tag` |
Return a single random block from notes with #tag , behavior depends on settings (default to every) |
`dice: #tag|-` |
Return a single random block from a single, random note with #tag |
`dice: #tag|+` |
Return a single random block from every note with #tag |
If the Always Return Links for Tags
setting is on, or |link
is appended to the end of the tag, a link to a random note will be returned instead of sections.
At the moment this will only return a single link regardless of the number of rolls specified. This may change in a later release.
The Dice Roller may also be given a link to a table in a note, which it will read and return a random result from the table.
Usage:
In a note (such as Note.md
), create a table & optionally give it a block id:
Header |
---|
A |
B |
C |
^block-id
Then, in the dice formula, use a wikilink to the block reference of the table:
`dice: [[Note^block-id]]`
The plugin will read the table and return a random result.
To return multiple elements, use:
`dice: Xd[[Note^block-id]]`
Once in preview mode, you may Ctrl - click on the result to open the block reference in a new pane.
If a table provided to the plugin has multiple headers, the plugin will return the entire row unless you specify the header to use:
Header | Header 2 |
---|---|
A | D |
B | E |
C | F |
^block-id
`dice: [[Note^block-id]]|Header 2`
The dice roller can also be used as a lookup table by passing a block-id to a table with the following format:
| dice: 1d20 | Heading |
| ---------- | -------- |
| 1-2 | Option 1 |
| 3-4 | Option 2 |
| 5-10 | Option 3 |
| 11 | Option 4 |
| 13,14 | Option 5 |
| 15-20 | Option 6 |
Requirements:
- The table must only be two columns.
- The first column must be a valid dice roll syntax.
The Table roller will roll the supplied dice formula, and return the matching result.
The options can also be a roller (of any type). This allows you to nest rollers: for example, you could supply a reference to different treasure tables, and when the treasure table is returned, the roller will get a random result from that table.
Example:
| dice:1d% | Result |
| -------- | -------------------------------------- |
| 01–50 | Nothing |
| 51–60 | `dice: [[Encounters^easy-encounters]]` |
| 61–100 | `dice: [[Encounters^hard-encounters]]` |
^encounter
`dice: [[ThisNote^encounter]]`
The Dice Roller may also be given a link to a list in a note, which it will read and return a random result from the list.
Usage:
In a note (such as Note.md
), create a list & optionally give it a block id:
- a
- b
- c
- d
^block-id
Then, in the dice formula, use a wikilink to the block reference of the table:
`dice: [[Note^block-id]]`
The plugin will read the list and return a random result.
To return multiple elements, use:
`dice: Xd[[Note^block-id]]`
Once in preview mode, you may Ctrl - click on the result to open the block reference in a new pane.
The result in preview mode has a tooltip that will appear when you hover over it.
It displays the formula used to calculate the result on the top line, and displays the calculated rolls on the bottom line.
Results can be saved for dice rolls as of version 6.1.0 using either the Globally Save Results setting or the following syntax:
Syntax | Description |
---|---|
dice+: ... |
Save result. Same as dice: ... if Globally Save Results is on. |
dice-: ... |
Do not save result. Same as dice: ... if Globally Save Results is off. |
It is possible to tell the plugin to replace the file contents of the note with the calculated dice roll using the dice-mod: <formula>
syntax.
This syntax can only be used for Dice Rolls (not section, table, tag, or link).
The plugin will replace the contents of the note with the syntax:
<formula> -> <full results> -> <combined results>
Example:
dice-mod: 3d100 + 12
=> 3d100 + 12 -> [75, 20, 75] + 12 -> 182
By default, the plugin will display the formula along with the result.
This can be turned off globally by turning off Add Formula When Modifying
in settings, or by appending |noform
to a dice-mod
roll.
Turn on to always return X results from each file associated with a tag. Overrideable with `dice: #tag|-`
Turn on to always return a file link for a tag roller. This option is the same as specifying `dice: #tag|link`
.
Add a "Copy Content" button to section results. This button will copy the returned content to your clipboard. If multiple results are returned, there will also be a "Copy All" button that will copy the content to your clipboard separated by two newline characters (\n
).
Instead of displaying a tooltip, dice rollers will display the formula and result inline.
Turn this off to only display the result of the lookup table, and not the value rolled.
Turn this off to globally turn off the dice button in rendered results.
Dice view will automatically open on startup.
The plugin will attempt to save and reload the results for all dice rollers. Overridable with `dice-: ...`
.
Dice formulas can be created in settings. Formulas must be given an alias; when the plugin detects the formula alias, it will use the defined formula for the roll.
At this time, no new features are planned. If there is a specific feature you would like to see, please open an issue!
From Obsidian v0.9.8, you can activate this plugin within Obsidian by doing the following:
- Open Settings > Third-party plugin
- Make sure Safe mode is off
- Click Browse community plugins
- Search for this plugin
- Click Install
- Once installed, close the community plugins window and activate the newly installed plugin
- Download the Latest Release from the Releases section of the GitHub Repository
- Extract the plugin folder from the zip to your vault's plugins folder:
<vault>/.obsidian/plugins/
Note: On some machines the.obsidian
folder may be hidden. On MacOS you should be able to pressCommand+Shift+Dot
to show the folder in Finder. - Reload Obsidian
- If prompted about Safe Mode, you can disable safe mode and enable the plugin. Otherwise head to Settings, third-party plugins, make sure safe mode is off and enable the plugin from there.
You can follow the same procedure to update the plugin
This plugin comes with no guarantee of stability and bugs may delete data. Please ensure you have automated backups.
If you're using Obsidian to run/plan a TTRPG, you may find my other plugin useful:
- Obsidian Leaflet - Add interactive maps to Obsidian.md notes
- 5e Statblocks - Create 5e-styled statblocks inside notes
- Initiative Tracker - Track TTRPG Initiative in Obsidian