{{log "character-main-v2" this}}
{{! Character Header with Name }}
{{formInput fields.name value=source.name rootId=partId disabled=isPlayMode placeholder="Character Name" }}
{{! Left Column - Portrait, Attributes & HP }}
{{! Portrait + HP column }}
{{! Portrait }}
{{! HP Shields (3 shields) - Below portrait }}
HP
{{formInput systemFields.hp.fields.value value=system.hp.value disabled=isPlayMode }}
/
{{formInput systemFields.hp.fields.max value=system.hp.max disabled=isPlayMode }}
MAGIC
{{formInput systemFields.magicPoints.fields.value value=system.magicPoints.value disabled=isPlayMode }}
/
{{formInput systemFields.magicPoints.fields.max value=system.magicPoints.max disabled=isPlayMode }}
ARMOR
{{formInput systemFields.armorPoints.fields.value value=system.armorPoints.value disabled=isPlayMode }}
/
{{formInput systemFields.armorPoints.fields.max value=system.armorPoints.max disabled=isPlayMode }}
{{! Core Attributes (STR, DEX, CON, INT, WIS, CHA) }}
{{formInput systemFields.characteristics.fields.str.fields.value value=system.characteristics.str.value disabled=isPlayMode }}
{{formInput systemFields.saves.fields.str.fields.value value=system.saves.str.value disabled=true }}
{{formInput systemFields.characteristics.fields.dex.fields.value value=system.characteristics.dex.value disabled=isPlayMode }}
{{formInput systemFields.saves.fields.dex.fields.value value=system.saves.dex.value disabled=true }}
{{formInput systemFields.characteristics.fields.con.fields.value value=system.characteristics.con.value disabled=isPlayMode }}
{{formInput systemFields.saves.fields.con.fields.value value=system.saves.con.value disabled=true }}
{{formInput systemFields.characteristics.fields.int.fields.value value=system.characteristics.int.value disabled=isPlayMode }}
{{formInput systemFields.saves.fields.int.fields.value value=system.saves.int.value disabled=true }}
{{formInput systemFields.characteristics.fields.wis.fields.value value=system.characteristics.wis.value disabled=isPlayMode }}
{{formInput systemFields.saves.fields.wis.fields.value value=system.saves.wis.value disabled=true }}
{{formInput systemFields.characteristics.fields.cha.fields.value value=system.characteristics.cha.value disabled=isPlayMode }}
{{formInput systemFields.saves.fields.cha.fields.value value=system.saves.cha.value disabled=true }}
{{! Right Column - Race, Classes }}
{{! Race }}

Race

{{#if race}}
{{race.name}}
{{else}}

{{localize "PRISMRPG.Message.dropRace"}}

{{/if}}
{{! Classes (Three boxes) }}
{{#each classSlots as |classItem index|}}

Class {{add index 1}}

{{#if classItem}}
{{classItem.name}}
{{else}}

{{localize "PRISMRPG.Message.dropClass"}}

{{/if}}
{{/each}}