Skip to content
This repository has been archived by the owner on Aug 26, 2019. It is now read-only.

noirscape/xdicey

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

xdicey

NPM

Travis npm npm node license

Throw an x sided dice y amount of times.

Example

dice = require("xdicey") //Require the package under the name dice

let SIDES = 6 // Were using six sided dies
let ROLLS = 1 // And rolling once

throwDice = dice(ROLLS,SIDES) // Throws a six sided die one time

console.log("Threw a " + ROLLS + "d" + " SIDES" + "and received" + throwDice.total);

Usage

dice = require("xdicey");

variable = dice(x,y);

x is the amount of times the die should be thrown. y is the amount of sides the die has.

The module will return a collection. The keys in the collection are total, which is the sum of all dice thrown and individual which is an array containing the individual results.

Releases

No releases published

Packages

No packages published