daggerheart/templates/dialogs/dice-roll/resourceDice.hbs
2025-07-13 02:49:43 +02:00

13 lines
No EOL
515 B
Handlebars

<div>
<div class="item-resources">
{{#each resource.diceStates as | state key |}}
<div class="item-resource">
<label>{{ifThen state.value state.value '?'}}</label>
<img src="{{concat "systems/daggerheart/assets/icons/dice/hope/d" ../resource.dieFaces ".svg"}}" />
</div>
{{/each}}
</div>
<footer>
<button data-action="rerollDice">{{localize "DAGGERHEART.APPLICATIONS.ResourceDice.rerollDice"}}</button>
</footer>
</div>