{{!-- !-- Render an item list entry row. !-- If the partial is called with a partial block, the partial block !-- content is inserted before the description. !-- @param itemData: The data of the item. !-- @param isEquipable: A flag to enable the equipped column. !-- @param hasQuantity: A flag to enable the quantity column. !-- @param hideDescription: A flag to disable the description column. !-- @param @partial-block: Custom column headers can be passed using the partial block. --}}
  • {{!-- equipped --}} {{#if isEquipable}} {{/if}} {{!-- image --}} {{> systems/ds4/templates/sheets/actor/components/rollable-image.hbs rollable=itemData.data.rollable src=itemData.img alt=(localize "DS4.EntityImageAltText" name=itemData.name) title=itemData.name rollableTitle=(localize "DS4.RollableImageRollableTitle" name=itemData.name) rollableClass="rollable-item"}} {{!-- amount --}} {{#if hasQuantity}} {{/if}} {{!-- name --}} {{!-- item type specifics --}} {{#if @partial-block }} {{> @partial-block}} {{/if}} {{!-- description --}} {{#unless hideDescription}}
    {{{itemData.data.description}}}
    {{/unless}} {{!-- control buttons --}} {{> systems/ds4/templates/sheets/actor/components/overview-control-buttons.hbs class="ds4-item-list__control-buttons" }}