Add Templates Html + Gulp Sass + Css + Basic Tree and Files

- Add Templates Html
- Gulp Sass
- Css
- Basic Tree and Files
This commit is contained in:
Mandar
2020-12-04 20:17:51 +01:00
parent 9332985ec7
commit a0a99eb08c
60 changed files with 7771 additions and 34 deletions

View File

@@ -0,0 +1,17 @@
/**
* 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";