Roll some dice
Installation
The RollDice library should run under pretty much any version of node. Note: this package is from the "library" branch of the repository, and has been isolated from any specific bot's plugin libraries.
npm install rolldice --save
- Require and use the dice in your application
const DiceRoll = ;// create and evaluate a dice rolling expressionlet dice = 'd4 + 2d12 + 3d3 for great justice';// get the boolean value of the expression's validity checklet syntaxIsValid = diceexpressionisValid;// > true// get the numerical value of the expressionlet rollTotal = diceexpressionresult;// > 27// get a string description of each roll result within the specified expressionlet rollDetails = diceexpression;// > 'Total: 27\r\nFormula: 1d4 + 2d12 + 3d3\r\nRolls:\r\n(1d4) [4] = 4\r\n(2d12) [6,11] = 17\r\n(3d3) [1,3,2] = 6'// get a string representation of the roll total and roll detailsconsole;// > For great justice: 18 rolls: 1d4(2=2) + 2d12(11=8+3) + 3d3(5=2+1+2)// display a readout of all the syntax supported by the dice rolling parserconsole;
Supported syntax
Supports standard dice notation, as well as some extended functionality.syntax: <roll>[<operator><roll><operator><roll>...][<operator><constant>]roll: [<number of dice>]d<number of sides>[<modifiers>]default number of dice: 1number of sides: any integer, or f (for Fudge dice)operator: +, -, *, /, %, (, or )constant: any integermodifiers:! - exploding dice, a maximum roll value causes recursive reroll and summationd<number> - drop the lowest X rolls from this groupk<number> - keep the highest X rolls from this grouph - alter either d or k modifier to affect the highest rolls, e.g. dh3: drop the highest 3 rollsl - alter either d or k modifier to affect the lowest rolls, e.g. kl2: keep the lowest 2 rollsr - reroll based on certain rulesr4 - reroll all 4sr<3 - reroll anything less than 3r>=11 - reroll anything greater than or equal to 11modifiers can be combined, but d and k are mutually exclusive
Issues/contributing
I'm open to contributions with pull requests. This is not a primary project for me in any way, so don't expect a lot of expedience on issues.
Hubot
If you want my rolldice library for hubot, check npm for hubot-rolldice, or see the mentalspike/hubot-rolldice.
License
This script has been released under the MIT license.