{{#if isSorcerer}}
  1. {{localize "BOL.ui.spells"}}
    {{localize "BOL.ui.circle"}}
    {{localize "BOL.ui.difficulty"}}
  2. {{#each spells as |item id|}}
  3. {{item.name}}

    {{item.system.properties.circle}}
    {{item.system.properties.difficulty}}
  4. {{/each}}
{{/if}} {{#if isAlchemist}}
  1. {{localize "BOL.ui.alchemy"}}
    {{localize "BOL.ui.type"}}
    {{localize "BOL.ui.difficulty"}}
    {{localize "BOL.ui.advance"}}
  2. {{#each alchemy as |item id|}}
  3. {{item.name}}

    {{localize (concat "BOL.alchemyItem." item.system.properties.alchemytype)}}
    {{item.system.properties.difficulty}}
    {{item.system.properties.pccurrent}} / {{item.system.properties.pccost}}
  4. {{/each}}
{{/if}}