{{!-- Abilities --}} {{#if options.showAbilities}}
{{> ".header" }} {{> ".header" }} {{#each abilities}} {{> ".ability" path=(concat "system.abilities." key) }} {{/each}}
{{/if}} {{!-- Features --}} {{#if features}} {{> "systems/dnd5e/templates/inventory/inventory.hbs" sections=features }} {{/if}} {{!-- Draft Animals --}} {{#if drafted}}
    {{#each drafted}}
  1. {{!-- Header --}}
    {{!-- Name & Creature Type --}}
    {{ actor.name }} {{ subtitle }}
    {{!-- Icon --}} {{ actor.name }}
    {{!-- Controls --}} {{#if @root.editable}}
    {{/if}}
  2. {{/each}}
{{/if}} {{!-- Action Stations --}} {{#if itemCategories.stations.length}}
    {{#each itemCategories.stations as |item|}} {{#dnd5e-itemContext item as |ctx|}}
  1. {{!-- Header --}}
    {{!-- Name, AC, & DT --}}
    {{ item.name }} {{ ctx.subtitle }}
    {{!-- Icon --}} {{ item.name }}
    {{!-- Weapon --}} {{#with ctx.enriched}} {{#if attack}}

    {{{ attack }}}

    {{/if}} {{#if damage}}

    {{{ damage }}}

    {{/if}} {{/with}} {{!-- HP --}} {{#if item.system.hp.max}} {{#with item.system.hp}}
    {{ value }} / {{ max }}
    {{#if conditions}}

    {{ conditions }}

    {{/if}}
    {{/with}} {{/if}} {{!-- Uses --}} {{#if ctx.uses.max}} {{#with ctx.uses}}
    {{ value }} / {{ max }}
    {{/with}} {{/if}} {{!-- Speed --}} {{#if item.system.speed.value}} {{#with item.system.speed}}
    {{ localize "DND5E.VEHICLE.MOUNTABLE.FIELDS.speed.value.label" }}: {{ value }} {{ units }} {{#if conditions}}({{ conditions }}){{/if}}
    {{/with}} {{/if}} {{!-- Crew --}} {{#if ctx.crew.length}}
    {{#each ctx.crew}}
    {{#if actor}}{{ actor.name }}{{/if}} {{#if (and @root.editable actor)}} {{/if}}
    {{/each}}
    {{/if}}
  2. {{/dnd5e-itemContext}} {{/each}}
{{/if}} {{!-- Drop Zones --}} {{#if @root.editable}}
{{ localize "DND5E.VEHICLE.Action.Create.Feature" }}
{{ localize "DND5E.VEHICLE.Action.Create.Equipment" }}
{{ localize "DND5E.VEHICLE.Action.Create.Weapon" }}
{{ localize "DND5E.VEHICLE.Action.Drop.Animal" }}
{{/if}}
{{#*inline ".header"}}
{{ localize "DND5E.AbilityModifierShort" }}
{{ localize "DND5E.SavingThrowShort" }}
{{/inline}} {{#*inline ".ability"}}
{{!-- Proficiency --}} {{!-- Label --}} {{ abbr }} {{!-- Score --}}
{{#if @root.editable}} {{else}} {{ value }} {{/if}}
{{!-- Modifier --}} {{ dnd5e-formatModifier mod }} {{!-- Saving Throw --}} {{ dnd5e-formatModifier save.value }} {{!-- Controls --}}
{{#if @root.editable}} {{/if}}
{{/inline}}