fvtt-lethal-fantasy/templates/loss-hp-hud.hbs
LeRatierBretonnien 157163672c
All checks were successful
Release Creation / build (release) Successful in 54s
Implements HP loss HUD button
2025-04-27 22:11:10 +02:00

14 lines
474 B
Handlebars

<div class="control-icon" data-action="lethal-loss-hp-hud">
<img class="lethal-hp-loss-hud" src="systems/fvtt-lethal-fantasy/assets/icons/broken-heart.svg"
width="36" height="36" title="Open token journal" />
<div class="hp-loss-wrap hp-loss-hud-disabled">
{{#for -10 0 1}}
<button class="hud-loss-hp-button-select loss-hp-hud-click " data-hp-value="{{this}}" >
<span class="">{{this}}</span>
</button>
{{/for}}
</div>
</div>