daggerheart/templates/ui/chat/foundryRollTooltip.hbs
Dapoolp 5d6eb4b145 k
2025-08-13 02:00:27 +02:00

19 lines
No EOL
640 B
Handlebars

{{#if parts.length}}
<div class="dice-tooltip">
<div class="wrapper">
<fieldset>
<legend>
{{localize "DAGGERHEART.UI.Chat.dicePool.title"}}
</legend>
<div class="roll-dice">{{log @root}}
{{#each parts}}
{{#each rolls}}
<div class="roll-die">
<div class="dice {{classes}}">{{result}}</div>
</div>
{{/each}}
{{/each}}
</div>
</div>
</div>
{{/if}}