dicerollvi
v1.0.4
Published
dice roll
Downloads
7
Readme
Installation
npm install dicerollvi
Usage
For use dicerollvi
single roll
var diceroll = require('dicerollvi');
//one dice
diceroll.dice()
//two dice
diceroll.twoDice()
multiple roll
var diceroll = require('dicerollvi');
//one dice --> in the argoument of function specify the number of roll
diceroll.diceRoll(3)
//two dice --> in the argoument of function specify the number of roll
diceroll.TwoDiceRoll(7)