Initial damage message

This commit is contained in:
WBHarry 2025-08-24 18:35:05 +02:00
parent afdffb672a
commit 362facae76
5 changed files with 95 additions and 4 deletions

View file

@ -0,0 +1,18 @@
<div class="daggerheart chat damage-summary">
{{#each targets}}
<div class="target-container">
<header>
<img src="{{this.token.texture.src}}" />
<label>{{this.token.name}}</label>
</header>
<div class="damage-container">
{{#each this.updates}}
<div class="damage-row">
<label>{{localize (concat "DAGGERHEART.CONFIG.HealingType." this.key ".name")}}:</label>
<div>{{this.value}}</div>
</div>
{{/each}}
</div>
</div>
{{/each}}
</div>