{{!-- Generic Item List Partial --}} {{!-- Usage: --}} {{!-- itemType - the localization key for the item type (e.g., 'ITEMS.abilities') --}} {{!-- items - the array of items to display --}} {{!-- createType - the data-type for creating new items --}} {{!-- showSkill - whether to show skill association (for specialties) --}}

{{localize itemType}}

    {{#each items as |item id|}}
  1. {{item.name}} {{#if showSkill}} {{item.system.skill}} {{/if}}
    {{#if item.system.description}} {{/if}}
  2. {{/each}}