{{localize "PF2E.CoreSkillsHeader"}}
{{!-- Lore Header --}}
{{!-- Attacks --}}
{{#each martialProficiencies.attacks as |proficiency key|}}
-
{{#if (and proficiency.custom @root.editable)}}
{{/if}}
{{numberFormat proficiency.value decimals=0 sign=true}}
{{localize proficiency.label}}
{{/each}}
{{!-- Defenses --}}
{{localize "PF2E.Actor.Character.Proficiency.Defense.Title"}}
{{#each martialProficiencies.defenses as |proficiency key|}}
-
{{numberFormat proficiency.value decimals=0 sign=true}}
{{localize proficiency.label}}
{{lookup @root.numberToRank proficiency.rank}}
{{/each}}
{{!-- Spellcasting --}}
{{#if (gt actor.system.proficiencies.spellcasting.rank 0)}}
{{localize "PF2E.Item.Spell.Plural"}}
{{#with document.spellcasting.base as |spellcasting|}}
-
{{numberFormat spellcasting.mod decimals=0 sign=true}}
{{localize spellcasting.label}}
{{lookup @root.numberToRank spellcasting.rank}}
{{/with}}
{{/if}}
{{!-- Class DCs --}}
{{#if classDCs.dcs}}
{{localize "PF2E.Actor.Character.ClassDC.Plural"}}
{{#each classDCs.dcs as |classDC|}}
-
{{classDC.dc}}
{{classDC.label}}
{{lookup @root.numberToRank classDC.rank}}
{{#with classDC}}
{{> (resolvePath "templates/actors/partials/modifiers-tooltip.hbs") title="PF2E.Actor.Character.ClassDC.Label"}}
{{/with}}
{{/each}}
{{/if}}