Files
l5rx-chiaroscuro/system/scripts/dice-l5r5e.js
Mandar a0a99eb08c Add Templates Html + Gulp Sass + Css + Basic Tree and Files
- Add Templates Html
- Gulp Sass
- Css
- Basic Tree and Files
2020-12-04 23:23:04 +01:00

18 lines
472 B
JavaScript

/**
* Establish each L5r5e dice type here as extensions of DiceTerm.
* @extends {DiceTerm}
*/
export { AbilityDie } from "./dice/dietype/AbilityDie.js";
export { RingsDie } from "./dice/dietype/RingsDie.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";