mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 03:31:07 +01:00
tbd work on summon action type
This commit is contained in:
parent
6cbe753552
commit
e83202681e
4 changed files with 134 additions and 0 deletions
24
templates/dialogs/summon/summonDialog.hbs
Normal file
24
templates/dialogs/summon/summonDialog.hbs
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
<fieldset class="one-column" data-key="summon">
|
||||
<legend>
|
||||
{{localize "DAGGERHEART.DIALOGS.Summon.title"}}
|
||||
</legend>
|
||||
<p class="hint">{{localize "DAGGERHEART.DIALOGS.Summon.hint"}}</p>
|
||||
|
||||
<div class="summons-list">
|
||||
{{#each summons as |entry index|}}
|
||||
<ul class="actor-summon-item">
|
||||
<div class="actor-summon-line">
|
||||
<img class="image" src="{{entry.img}}" />
|
||||
{{#if (gte entry.count 1)}}
|
||||
<h4 class="h4">
|
||||
{{entry.name}} (x{{entry.count}})
|
||||
</h4>
|
||||
{{else}}
|
||||
<h4 class="h4 disabled">
|
||||
{{entry.name}}
|
||||
</h4>
|
||||
{{/if}}
|
||||
</div>
|
||||
</ul>
|
||||
{{/each}}
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue