mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 11:41:08 +01:00
29 lines
No EOL
1.2 KiB
Handlebars
29 lines
No EOL
1.2 KiB
Handlebars
<div class="daggerheart dh-style tooltip">
|
|
<h2 class="tooltip-title">{{item.name}}</h2>
|
|
<img class="tooltip-image" src="{{item.img}}" />
|
|
<div class="tooltip-description">{{{description}}}</div>
|
|
|
|
<div class="tooltip-information-section">
|
|
<div class="tooltip-information">
|
|
<label>{{localize "DAGGERHEART.GENERAL.Domain.single"}}</label>
|
|
{{#with (lookup allDomains item.system.domain) as | domain |}}
|
|
<div>{{localize domain.label}}</div>
|
|
{{/with}}
|
|
</div>
|
|
|
|
<div class="tooltip-information">
|
|
<label>{{localize "Type"}}</label>
|
|
{{#with (lookup config.DOMAIN.cardTypes item.system.type) as | type |}}
|
|
<div>{{localize type.label}}</div>
|
|
{{/with}}
|
|
</div>
|
|
<div class="tooltip-information">
|
|
<label>{{localize "DAGGERHEART.GENERAL.level"}}</label>
|
|
<div>{{item.system.level}}</div>
|
|
</div>
|
|
<div class="tooltip-information">
|
|
<label>{{localize "DAGGERHEART.ITEMS.DomainCard.recallCost"}}</label>
|
|
<div>{{item.system.recallCost}}</div>
|
|
</div>
|
|
</div>
|
|
</div> |