daggerheart/templates/sheets/items/subclass/description.hbs
WBHarry b7bc452bf5
Some checks failed
Project CI / build (24.x) (push) Has been cancelled
[Fix] Improve Class-Subclass Linkage (#1846)
* Initial thoughts

* .

* Fixed linting

* Continue work on updating identifier

* Change to uuid approach

* Localization and minor fix

* Fixed CompendiumBrowser Class filter for Subclass view

* Fixed the class name display in the subclass view

* Improved missing class visual for subclass

* Fixed character creation

* Rerender class sheets when subclass link is changed

* Use compendium source over actual uuid in search

---------

Co-authored-by: Carlos Fernandez <cfern1990@gmail.com>
2026-05-05 22:15:21 +02:00

26 lines
No EOL
1.3 KiB
Handlebars

<div class="item-description-outer-container">
{{#if spellcastTrait}}
<div class="item-description-container">
<h4>{{localize "DAGGERHEART.ITEMS.Subclass.spellcastTrait"}}</h4>
<span>{{spellcastTrait}}</span>
</div>
{{/if}}
<div class="item-description-container">
<h4>{{localize "DAGGERHEART.ITEMS.Subclass.foundationFeatures"}}</h4>
{{#each foundationFeatures as | feature |}}
<div class="item-description-inner-container"><strong>{{localize feature.label}}</strong>: {{{localize feature.description}}}</div>
{{/each}}
</div>
<div class="item-description-container">
<h4>{{localize "DAGGERHEART.ITEMS.Subclass.specializationFeature"}}</h4>
{{#each specializationFeatures as | feature |}}
<div class="item-description-inner-container"><strong>{{localize feature.label}}</strong>: {{{localize feature.description}}}</div>
{{/each}}
</div>
<div class="item-description-container">
<h4>{{localize "DAGGERHEART.ITEMS.Subclass.masteryFeature"}}</h4>
{{#each masteryFeatures as | feature |}}
<div class="item-description-inner-container"><strong>{{localize feature.label}}</strong>: {{{localize feature.description}}}</div>
{{/each}}
</div>
</div>