mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 11:41:08 +01:00
* Fixed so downtime actiosn can be used again * Update module/data/fields/action/targetField.mjs Co-authored-by: Carlos Fernandez <CarlosFdez@users.noreply.github.com> * . --------- Co-authored-by: Carlos Fernandez <CarlosFdez@users.noreply.github.com>
33 lines
No EOL
1.2 KiB
Handlebars
33 lines
No EOL
1.2 KiB
Handlebars
<div class="daggerheart chat effect-summary">
|
|
<div class="effect-header">
|
|
<span>{{localize "DAGGERHEART.GENERAL.Effect.plural"}}</span>
|
|
</div>
|
|
<div class="effects-container">
|
|
{{#each effects}}
|
|
<details class="effect-target-container">
|
|
<summary class="effect-label">
|
|
<img class="effect-img" src="{{this.img}}" />
|
|
<h2 class="title">{{this.name}}</h2>
|
|
<i class="fa-solid fa-chevron-down"></i>
|
|
</summary>
|
|
<div class="description">
|
|
{{{this.description}}}
|
|
</div>
|
|
</details>
|
|
{{/each}}
|
|
</div>
|
|
|
|
{{#if targets}}
|
|
<div class="actor-header">
|
|
<span>{{localize "DAGGERHEART.UI.Chat.appliedTo"}}</span>
|
|
</div>
|
|
<div class="targets-container">
|
|
{{#each targets}}
|
|
<div class="token-target-container {{#if this.id}}clickable{{/if}}" data-token="{{this.id}}">
|
|
<img src="{{this.texture.src}}" />
|
|
<h2 class="title">{{this.name}}</h2>
|
|
</div>
|
|
{{/each}}
|
|
</div>
|
|
{{/if}}
|
|
</div> |