All user data for FoundryVTT. Includes worlds, systems, modules, and any asset in the "foundryuserdata" directory. Does NOT include the FoundryVTT installation itself.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

87 lines
3.2 KiB

{{#if data.title.show}}
<header>
<h{{title.level1}}>{{data.name}}</h{{title.level1}}>
</header>
{{/if}}
{{#if linked.document}}
<section>
{{{enriched.value}}}
<h{{title.level2}}>{{localize "JOURNALENTRYPAGE.DND5E.Class.FeaturesHeader"}}</h{{title.level2}}>
<p>
{{localize "JOURNALENTRYPAGE.DND5E.Class.FeaturesDescription" name=linked.name lowercaseName=linked.lowercaseName}}
</p>
{{#if (or advancement.hp enriched.additionalHitPoints)}}
<h{{title.level3}}>{{localize "JOURNALENTRYPAGE.DND5E.Class.HitPointsHeader"}}</h{{title.level3}}>
<p>
{{{localize "JOURNALENTRYPAGE.DND5E.Class.HitDice" dice=advancement.hp.hitDice class=linked.lowercaseName}}}<br>
{{{localize "JOURNALENTRYPAGE.DND5E.Class.HitPointsLevel1" max=advancement.hp.max}}}<br>
{{{localize "JOURNALENTRYPAGE.DND5E.Class.HitPointsLevelX" dice=advancement.hp.hitDice
average=advancement.hp.average class=linked.lowercaseName}}}
</p>
{{{enriched.additionalHitPoints}}}
{{/if}}
{{#if (or advancement.traits enriched.additionalTraits)}}
<h{{title.level3}}>{{localize "JOURNALENTRYPAGE.DND5E.Class.TraitsHeader"}}</h{{title.level3}}>
{{{enriched.additionalTraits}}}
{{/if}}
{{#if (or advancement.equipment enriched.additionalEquipment)}}
<h{{title.level3}}>{{localize "JOURNALENTRYPAGE.DND5E.Class.EquipmentHeader"}}</h{{title.level3}}>
{{{enriched.additionalEquipment}}}
{{/if}}
{{> "dnd5e.journal-table" table=table level=title.level3
caption=(localize "JOURNALENTRYPAGE.DND5E.Class.TableCaption" class=linked.name)}}
{{#each features}}
<h{{@root.title.level4}}>{{this.name}}</h{{@root.title.level4}}>
{{{this.description}}}
{{/each}}
{{#if optionalTable}}
<h{{title.level2}}>{{localize "JOURNALENTRYPAGE.DND5E.Class.OptionalFeaturesCaption"}}</h{{title.level2}}>
<p>{{localize "JOURNALENTRYPAGE.DND5E.Class.OptionalFeaturesDescription" class=linked.lowercaseName}}</p>
{{> "dnd5e.journal-table" table=optionalTable level=title.level3
caption=(localize "JOURNALENTRYPAGE.DND5E.Class.TableOptionalCaption" class=linked.name)}}
{{#each optionalFeatures}}
<h{{@root.title.level4}}>{{this.name}}</h{{@root.title.level4}}>
{{{this.description}}}
{{/each}}
{{/if}}
{{#if (or enriched.subclass subclasses)}}
<h{{title.level2}}>
{{#if system.subclassHeader}}{{system.subclassHeader}}
{{else}}{{localize "JOURNALENTRYPAGE.DND5E.Class.SubclassItems"}}{{/if}}
</h{{title.level2}}>
{{{enriched.subclass}}}
{{#each subclasses}}
<h{{@root.title.level3}}>{{this.name}}</h{{@root.title.level3}}>
{{{this.description}}}
{{#if this.table}}
{{> "dnd5e.journal-table" table=this.table level=title.level4
caption=(localize "JOURNALENTRYPAGE.DND5E.Class.TableCaption" class=this.name)}}
{{/if}}
{{#each this.features}}
<h{{@root.title.level4}}>{{this.name}}</h{{@root.title.level4}}>
{{{this.description}}}
{{/each}}
{{/each}}
{{/if}}
</section>
{{else}}
<section>
{{localize "JOURNALENTRYPAGE.DND5E.Class.NoValidClass"}}
</section>
{{/if}}