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
934 B

<div class="dice-tooltip" style="display: none">
{{#each instances as |instance|}}
<section class="tooltip-part instance {{instance.type}}">
<header>
{{instance.typeLabel}} <i class="fa-solid fa-{{instance.iconClass}} icon"></i>
</header>
{{#each instance.dice as |dice|}}
<div class="dice">
<header class="part-header flexrow">
<span class="part-formula">{{dice.formula}}</span>
<span class="part-total">{{dice.total}}</span>
</header>
<ol class="dice-rolls">
{{#each dice.rolls as |roll|}}
<li class="roll {{roll.classes}}">{{{roll.result}}}</li>
{{/each}}
</ol>
</div>
{{/each}}
</section>
{{/each}}
</div>