xdicey

2.0.4 • Public • Published

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.

Dependencies (0)

    Dev Dependencies (2)

    Package Sidebar

    Install

    npm i xdicey

    Weekly Downloads

    9

    Version

    2.0.4

    License

    GPL-3.0

    Unpacked Size

    88.3 kB

    Total Files

    13

    Last publish

    Collaborators

    • ev1l0rd