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.

22 lines
942 B

1 year ago
1 year ago
1 year ago
  1. <div class="dice-tooltip" style="display: none">
  2. {{#each instances as |instance|}}
  3. <section class="tooltip-part damage instance color {{instance.type}}">
  4. <header>
  5. {{instance.typeLabel}} <i class="fa-solid fa-{{instance.iconClass}}"></i>
  6. </header>
  7. {{#each instance.dice as |dice|}}
  8. <div class="dice">
  9. <header class="part-header flexrow">
  10. <span class="part-formula">{{dice.formula}}</span>
  11. <span class="part-total">{{dice.total}}</span>
  12. </header>
  13. <ol class="dice-rolls">
  14. {{#each dice.rolls as |roll|}}
  15. <li class="roll {{roll.classes}}">{{{roll.result}}}</li>
  16. {{/each}}
  17. </ol>
  18. </div>
  19. {{/each}}
  20. </section>
  21. {{/each}}
  22. </div>