1.1.0 • Published 6 years ago

anydice v1.1.0

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

anydice.js

npm

Note: AnyDice is not particularly fast; results can take a second or two to come back

API

Simple

const { roll } = require("anydice");
// import { roll } from "anydice";

// later...

console.log(await roll("output [highest 1 of 2d20]+10"));

Advanced

const { AnyDice } = require("anydice");

// later...

const input = `output [highest 1 of 2d20]+10
output 3d6 named "result 2"`;

const result = await AnyDice.run(input);
const rolls = result.roll(result.first(), 10); // [highest 1 of 2d20]+10
const possibleValues = result.possibleValues("result 2"); // 3d6
console.log(rolls);
console.log(possibleValues);
1.1.0

6 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago