1. {{localize "BOL.ui.maneuvers"}}
  2. Attaque à mains nues

{{#each combat as |combatType id|}}
  1. {{localize combatType.label}}
    {{#if protection}}
    {{localize "BOL.ui.protection"}}
    {{/if}} {{#if blocking}}
    {{localize "BOL.ui.blocking"}}
    {{/if}} {{#if weapon}}
    {{localize "BOL.ui.damages"}}
    {{/if}} {{#if ranged}}
    {{localize "BOL.ui.range"}}
    {{else}}
    {{/if}}
  2. {{#each combatType.items as |item id|}}
  3. {{item.name}}

    {{#if ../protection}}
    {{item.data.properties.soak.value}}
    {{/if}} {{#if ../blocking}}
    {{item.data.properties.blocking.malus}}
    {{/if}} {{#if ../weapon}}
    {{item.data.properties.damage}}
    {{/if}} {{#if ../ranged}}
    {{item.data.properties.range}}
    {{else}}
    {{/if}}
  4. {{/each}}
{{/each}}