mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-14 20:51:07 +01:00
Initial damage message
This commit is contained in:
parent
afdffb672a
commit
362facae76
5 changed files with 95 additions and 4 deletions
18
templates/ui/chat/damageSummary.hbs
Normal file
18
templates/ui/chat/damageSummary.hbs
Normal 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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue