1.0.5 • Published 4 years ago

@nothingrandom/roll v1.0.5

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

roll

Travis (.com)

A dice roller / random number generator

Install

$ yarn global add @nothingrandom/roll
$ npm install --global @nothingrandom/roll

Usage (CLI)

$ roll --help

  Usage
    $ roll <dice to roll>

  Example
    $ roll d20 # rolls one die with 20 sides
    1 - 20

    $ roll 2d20 # rolls two dice with 20 sides each
    2 - 40

    $ roll 2d20+d3 # rolls two dice with 20 sides and one die with 3 sides
    3 - 43

Usage (require in JS)

const Roll = require('@nothingrandom/roll');
const roll = new Roll();

roll.roll('2d20').result;

// roll.roll(INPUT) will return
// {
//   rolled: number,
//   average: number[],
//   result: number,
// }

License

MIT © Benjamin Hollway

1.0.5

4 years ago

1.0.2

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago