All user data for FoundryVTT. Includes worlds, systems, modules, and any asset in the "foundryuserdata" directory. Does NOT include the FoundryVTT installation itself.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
929 B

1 year ago
  1. <div class="dice-tooltip">
  2. {{#each damageTypes as |data type|}}
  3. <div class="damage-type {{type}}">
  4. <h3 class="flexrow"><span>{{localize data.label}}</span><i class="fa fa-{{data.icon}}"></i></h3>
  5. {{#each data.categories as |category|}}
  6. <section class="tooltip-part">
  7. <div class="dice">
  8. <header class="part-header flexrow">
  9. <span class="part-formula">{{category.formula}}</span>
  10. <span class="part-flavor">{{localize category.label}}</span>
  11. <span class="part-total">{{category.total}}</span>
  12. </header>
  13. </div>
  14. <ol class="dice-rolls">
  15. {{#each category.dice as |die|}}
  16. <li class="roll die d{{die.faces}}">{{die.result}}</li>
  17. {{/each}}
  18. </ol>
  19. </section>
  20. {{/each}}
  21. </div>
  22. {{/each}}
  23. </div>