daggerheart/templates/sheets/items/domainCard/header.hbs
WBHarry 02958f9574
[Feature] Homebrew Domains (#639)
* Split into tabs

* Finished homebrew settings

* .

* Improved domainremoval cleanup
2025-08-06 13:58:17 +02:00

28 lines
No EOL
1.2 KiB
Handlebars

<header class='item-card-header'>
<img class='profile' src='{{source.img}}' data-action='editImage' data-edit='img' />
<div class="item-icons-list">
<span class="item-icon">
<span class="recall-label">{{localize "DAGGERHEART.ITEMS.DomainCard.recallCost"}}</span>
<span class="recall-value">{{source.system.recallCost}}</span>
<i class="fa-solid fa-bolt"></i>
</span>
<span class="item-icon">
<span class="recall-label">{{localize @root.domain.label}}</span>
<img src="{{@root.domain.src}}" alt="">
</span>
</div>
<div class='item-info'>
<h1 class='item-name'><input type='text' name='name' value='{{source.name}}' /></h1>
<div class='item-description'>
<h3>{{localize 'TYPES.Item.domainCard'}}</h3>
<h3>
{{localize (concat 'DAGGERHEART.CONFIG.DomainCardTypes.' source.system.type)}}
<span>-</span>
{{localize @root.domain.label}}
<span>-</span>
{{localize "DAGGERHEART.GENERAL.level"}}:
{{source.system.level}}
</h3>
</div>
</div>
</header>