24 lines
629 B
JavaScript
24 lines
629 B
JavaScript
/**
|
|
* Establish each L5r5e dice type here as extensions of DiceTerm.
|
|
* @extends {DiceTerm}
|
|
*/
|
|
|
|
export { L5rBaseDie } from "./dice/dietype/l5r-base-die.js";
|
|
export { AbilityDie } from "./dice/dietype/ability-die.js";
|
|
export { RingDie } from "./dice/dietype/ring-die.js";
|
|
|
|
/**
|
|
* New extension of the core DicePool class for evaluating rolls with the L5r5e DiceTerms
|
|
*/
|
|
export { RollL5r5e } from "./dice/roll.js";
|
|
|
|
/**
|
|
* Dice pool utility specializing in the L5r5e special dice
|
|
*/
|
|
export { DicePoolL5r5e } from "./dice/pool.js";
|
|
|
|
/**
|
|
* Dice Picker Dialog
|
|
*/
|
|
export { DicePickerDialog } from "./dice/dice-picker-dialog.js";
|