mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-06-06 04:44:16 +02:00
Some checks failed
Project CI / build (24.x) (push) Has been cancelled
* 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>
26 lines
No EOL
1.3 KiB
Handlebars
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> |