UNPKG

@randsum/dice

Version:

A flexible, type-safe dice roller for tabletop RPGs, game development, and probability simulations

9 lines (8 loc) 233 B
/** * Base die class for creating custom dice */ export { alphaNumDie, coin, D, D10, D100, D12, D20, D4, D6, D8, fudgeDice } from './D'; /** * Main function for rolling dice with various options */ export { roll } from './roll';