mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 19:51:08 +01:00
* Small random fixes * Added use of ItemLinkFields * Multiclass levelup fixes * Fixed our onCreate methods unintentionally being run on all clients * Remade apps handling * Added for all class items and subclass * Restored foreignDocumentUuidField * Improved * PR fxies * Fixed tooltip enrichment * . * Reverted silly change
31 lines
No EOL
1.3 KiB
Handlebars
31 lines
No EOL
1.3 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 config.DOMAIN.domains 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>
|
|
|
|
{{> "systems/daggerheart/templates/ui/tooltip/parts/tooltipTags.hbs" features=item.system.actions isAction=true label=(localize "DAGGERHEART.GENERAL.Action.plural") }}
|
|
</div> |