diff --git a/src/module/ds4.ts b/src/module/ds4.ts index 259cd7e..ca0eef0 100644 --- a/src/module/ds4.ts +++ b/src/module/ds4.ts @@ -64,6 +64,7 @@ async function registerHandlebarsPartials() { "systems/ds4/templates/actor/partials/character-inventory.hbs", "systems/ds4/templates/actor/partials/creature-inventory.hbs", "systems/ds4/templates/actor/partials/talent-rank-equation.hbs", + "systems/ds4/templates/actor/partials/item-list-header.hbs", ]; return loadTemplates(templatePaths); } diff --git a/src/templates/actor/partials/item-list-header.hbs b/src/templates/actor/partials/item-list-header.hbs new file mode 100644 index 0000000..b81cbb4 --- /dev/null +++ b/src/templates/actor/partials/item-list-header.hbs @@ -0,0 +1,34 @@ +{{!-- +!-- Render an item list header row. +!-- If the partial is called with a partial block, the partial block +!-- content is inserted before the description heading. +!-- +!-- @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}} +
    {{localize 'DS4.ItemEquippedAbbr'}}
    + {{/if}} + {{!-- image --}} +
    + {{!-- amount --}} + {{#if hasQuantity}} +
    #
    + {{/if}} + {{!-- name --}} +
    {{localize 'DS4.ItemName'}}
    + {{!-- item type specifics --}} + {{#if @partial-block }} + {{> @partial-block }} + {{/if}} + {{!-- description --}} + {{#unless hideDescription}} +
    {{localize 'DS4.Description'}}
    + {{/unless}} + {{!-- control buttons placeholder --}} +
    +
  • diff --git a/src/templates/actor/partials/items-overview.hbs b/src/templates/actor/partials/items-overview.hbs index eb5df42..e0bbcfa 100644 --- a/src/templates/actor/partials/items-overview.hbs +++ b/src/templates/actor/partials/items-overview.hbs @@ -19,38 +19,6 @@ {{> systems/ds4/templates/actor/partials/overview-add-button.hbs dataType=dataType }} {{/inline}} - -{{!-- -!-- Render a header row for a given data type. -!-- An "equipped" heading is rendered except for the case dataType==='loot'. -!-- The partial assumes a variable dataType to be given in the context. -!-- If the partial is called with a partial block, the partial block -!-- content is inserted before the description heading. - -!-- @param datType: hand over the dataType to the partial as hash parameter -!-- @param partial-block: hand over custom children in the partial block. ---}} -{{#*inline "itemListHeader" }} -
  • - {{!-- equipped --}} - {{#if (ne dataType 'loot')}} -
    {{localize 'DS4.ItemEquippedAbbr'}}
    - {{/if}} - {{!-- image --}} -
    - {{!-- amount --}} -
    #
    - {{!-- name --}} -
    {{localize 'DS4.ItemName'}}
    - {{!-- item type specifics --}} - {{> @partial-block }} - {{!-- description --}} -
    {{localize 'DS4.Description'}}
    - {{!-- control buttons placeholder --}} -
    -
  • -{{/inline}} - {{!-- !-- Render a list row from a given item. !-- An equipped checkbox is rendered except for the case item.data.type==='loot'. @@ -93,7 +61,7 @@

    {{localize 'DS4.ItemTypeWeaponPlural'}}

    {{#> ifHasItemOfType itemsArray=itemsByType.weapon dataType='weapon' }}
      - {{#> itemListHeader dataType='weapon'}} + {{#> systems/ds4/templates/actor/partials/item-list-header.hbs isEquipable=true hasQuantity=true}}
      {{localize 'DS4.AttackTypeAbbr'}}
      {{localize 'DS4.WeaponBonusAbbr'}} @@ -101,7 +69,7 @@
      {{localize 'DS4.OpponentDefenseAbbr'}}
      - {{/itemListHeader}} + {{/systems/ds4/templates/actor/partials/item-list-header.hbs}} {{#each itemsByType.weapon as |item id|}} {{#> itemListEntry item=item}}
      {{localize 'DS4.ItemTypeArmorPlural'}} {{#> ifHasItemOfType itemsArray=itemsByType.armor dataType='armor' }}
        - {{#> itemListHeader dataType='armor'}} + {{#> systems/ds4/templates/actor/partials/item-list-header.hbs isEquipable=true hasQuantity=true}}
        {{localize 'DS4.ArmorMaterialTypeAbbr'}}
        {{localize 'DS4.ArmorTypeAbbr'}}
        {{localize 'DS4.ArmorValueAbbr'}}
        - {{/itemListHeader}} + {{/systems/ds4/templates/actor/partials/item-list-header.hbs}} {{#each itemsByType.armor as |item id|}} {{#> itemListEntry item=item }}
        @@ -145,11 +113,11 @@

        {{localize 'DS4.ItemTypeShieldPlural'}}

        {{#> ifHasItemOfType itemsArray=itemsByType.shield dataType='shield' }}
          - {{#> itemListHeader dataType='shield' }} + {{#> systems/ds4/templates/actor/partials/item-list-header.hbs isEquipable=true hasQuantity=true}}
          {{localize 'DS4.ArmorValueAbbr'}}
          - {{/itemListHeader}} + {{/systems/ds4/templates/actor/partials/item-list-header.hbs}} {{#each itemsByType.shield as |item id|}} {{#> itemListEntry item=item }}
          {{item.data.armorValue}}
          @@ -163,9 +131,9 @@

          {{localize 'DS4.ItemTypeEquipmentPlural'}}

          {{#> ifHasItemOfType itemsArray=itemsByType.equipment dataType='equipment' }}
            - {{#> itemListHeader dataType='equipment'}} + {{#> systems/ds4/templates/actor/partials/item-list-header.hbs isEquipable=true hasQuantity=true}}
            {{localize 'DS4.StorageLocation'}}
            - {{/itemListHeader}} + {{/systems/ds4/templates/actor/partials/item-list-header.hbs}} {{#each itemsByType.equipment as |item id|}} {{#> itemListEntry item=item }} {{localize 'DS4.ItemTypeLootPlural'}} {{#> ifHasItemOfType itemsArray=itemsByType.loot dataType='loot' }}
              - {{#> itemListHeader dataType='loot'}} + {{#> systems/ds4/templates/actor/partials/item-list-header.hbs hasQuantity=true}}
              {{localize 'DS4.StorageLocation'}}
              - {{/itemListHeader}} + {{/systems/ds4/templates/actor/partials/item-list-header.hbs}} {{#each itemsByType.loot as |item id|}} {{#> itemListEntry item=item }} {{/inline}} -{{!-- -!-- Render a list header for a base item list entries from a given item. ---}} -{{#*inline "itemListHeader"}} -
            1. - {{!-- image --}} -
              - {{!-- name --}} -
              {{localize 'DS4.ItemName'}}
              - {{!-- description --}} -
              {{localize 'DS4.Description'}}
              - {{!-- control buttons placeholder --}} -
              -
            2. -{{/inline}} - - {{!-- ======================================================================== --}} -
                - {{> itemListHeader }} + {{> systems/ds4/templates/actor/partials/item-list-header.hbs }} {{#each itemsByType.specialCreatureAbility as |item id|}} {{> itemListEntry item=item}} {{/each}} diff --git a/src/templates/actor/partials/spells-overview.hbs b/src/templates/actor/partials/spells-overview.hbs index 4131025..6dbfacf 100644 --- a/src/templates/actor/partials/spells-overview.hbs +++ b/src/templates/actor/partials/spells-overview.hbs @@ -37,30 +37,22 @@ localizationString=localizationString}}
                  -
                1. - {{!-- equipped --}} -
                  {{localize 'DS4.ItemEquippedAbbr'}}
                  - {{!-- image --}} -
                  - {{!-- name --}} -
                  {{localize 'DS4.ItemName'}}
                  - {{!-- spell type --}} -
                  {{localize 'DS4.SpellTypeAbbr'}}
                  - {{!-- spell bonus --}} -
                  {{localize 'DS4.SpellBonusAbbr'}}
                  - {{!-- max. distance --}} -
                  - {{!-- duration --}} -
                  - {{!-- cooldown duration --}} -
                  - {{!-- control buttons placeholder --}} -
                  -
                2. + {{#> systems/ds4/templates/actor/partials/item-list-header.hbs isEquipable=true hideDescription=true}} + {{!-- spell type --}} +
                  {{localize 'DS4.SpellTypeAbbr'}}
                  + {{!-- spell bonus --}} +
                  {{localize 'DS4.SpellBonusAbbr'}}
                  + {{!-- max. distance --}} +
                  + {{!-- duration --}} +
                  + {{!-- cooldown duration --}} +
                  + {{/systems/ds4/templates/actor/partials/item-list-header.hbs}} {{#each itemsByType.spell as |item id|}}
                3. - {{!-- image --}}
                  @@ -73,8 +65,8 @@ localizationString=localizationString}} title="{{lookup ../config.i18n.spellTypes item.data.data.spellType}}">
                {{!-- spell bonus --}} - + {{!-- max. distance --}} {{> distanceUnit localizationString='DS4.SpellMaxDistance' unitDatum=item.data.data.maxDistance config=../config}} diff --git a/src/templates/actor/partials/talents-abilities-overview.hbs b/src/templates/actor/partials/talents-abilities-overview.hbs index 448bd01..0d2f543 100644 --- a/src/templates/actor/partials/talents-abilities-overview.hbs +++ b/src/templates/actor/partials/talents-abilities-overview.hbs @@ -54,8 +54,6 @@
                {{!-- name --}}
                {{localize 'DS4.ItemName'}}
                - {{!-- rank info --}} -
                {{localize 'DS4.TalentRank'}}
                {{!-- description --}}
                {{localize 'DS4.Description'}}
                {{!-- control buttons placeholder --}} @@ -87,30 +85,16 @@ {{/inline}} -{{!-- -!-- Render a list header for a base item list entry from a given item. -!-- The partial assumes a variable dataType to be given in the context. ---}} -{{#*inline "baseItemListHeader"}} -
              1. - {{!-- image --}} -
                - {{!-- name --}} -
                {{localize 'DS4.ItemName'}}
                - {{!-- description --}} -
                {{localize 'DS4.Description'}}
                - {{!-- control buttons placeholder --}} -
                -
              2. -{{/inline}} - {{!-- ======================================================================== --}}

                {{localize 'DS4.ItemTypeTalentPlural'}}

                {{#> ifHasItemOfType itemsArray=itemsByType.talent dataType='talent' }}
                  - {{> talentListHeader}} + {{#> systems/ds4/templates/actor/partials/item-list-header.hbs }} + {{!-- rank info --}} +
                  {{localize 'DS4.TalentRank'}}
                  + {{/systems/ds4/templates/actor/partials/item-list-header.hbs}} {{#each itemsByType.talent as |item id|}} {{> talentListEntry item=item}} {{/each}} @@ -120,7 +104,7 @@

                  {{localize 'DS4.ItemTypeRacialAbilityPlural'}}

                  {{#> ifHasItemOfType itemsArray=itemsByType.racialAbility dataType='racialAbility' }}
                    - {{> baseItemListHeader}} + {{> systems/ds4/templates/actor/partials/item-list-header.hbs }} {{#each itemsByType.racialAbility as |item id|}} {{> baseItemListEntry item=item}} {{/each}} @@ -130,7 +114,7 @@

                    {{localize 'DS4.ItemTypeLanguagePlural'}}

                    {{#> ifHasItemOfType itemsArray=itemsByType.language dataType='language' }}
                      - {{> baseItemListHeader}} + {{> systems/ds4/templates/actor/partials/item-list-header.hbs }} {{#each itemsByType.language as |item id|}} {{> baseItemListEntry item=item}} {{/each}} @@ -140,7 +124,7 @@

                      {{localize 'DS4.ItemTypeAlphabetPlural'}}

                      {{#> ifHasItemOfType itemsArray=itemsByType.alphabet dataType='alphabet' }}
                        - {{> baseItemListHeader}} + {{> systems/ds4/templates/actor/partials/item-list-header.hbs }} {{#each itemsByType.alphabet as |item id|}} {{> baseItemListEntry item=item}} {{/each}}