mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-14 20:51:07 +01:00
Added effect message
This commit is contained in:
parent
744412bf9f
commit
30229407cd
5 changed files with 106 additions and 1 deletions
21
templates/ui/chat/effectSummary.hbs
Normal file
21
templates/ui/chat/effectSummary.hbs
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
<div class="daggerheart chat effect-summary">
|
||||
<h5>{{localize "DAGGERHEART.GENERAL.Effect.plural"}}</h5>
|
||||
<div class="effects-container">
|
||||
{{#each effects}}
|
||||
<div class="effect-target-container" data-tooltip="{{concat "#item#" this.uuid}}">
|
||||
<img src="{{this.img}}" />
|
||||
<label>{{this.name}}</label>
|
||||
</div>
|
||||
{{/each}}
|
||||
</div>
|
||||
|
||||
<h5>{{localize "DAGGERHEART.UI.Chat.appliedTo"}}</h5>
|
||||
<div class="targets-container">
|
||||
{{#each targets}}
|
||||
<div class="token-target-container" data-token-uuid="{{this.uuid}}">
|
||||
<img src="{{this.texture.src}}" />
|
||||
<label>{{this.name}}</label>
|
||||
</div>
|
||||
{{/each}}
|
||||
</div>
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue