mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-04-24 16:33:38 +02:00
Compare commits
2 commits
3bfa6b28ed
...
f3b60f08db
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f3b60f08db | ||
|
|
9f056b3c46 |
3 changed files with 4 additions and 5 deletions
|
|
@ -3078,8 +3078,7 @@
|
|||
"immune": "Immune",
|
||||
"middleClick": "[Middle Click] Keep tooltip view",
|
||||
"tokenSize": "The token size used on the canvas",
|
||||
"previewTokenHelp": "Left-click to place, right-click to cancel",
|
||||
"clickManageArmor": "Click to manage armor equipments"
|
||||
"previewTokenHelp": "Left-click to place, right-click to cancel"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -964,7 +964,7 @@ export default class CharacterSheet extends DHBaseActorSheet {
|
|||
});
|
||||
}
|
||||
|
||||
if (armorSources.length <= 1) return;
|
||||
if (!armorSources.length) return;
|
||||
|
||||
const useResourcePips = game.settings.get(
|
||||
CONFIG.DH.id,
|
||||
|
|
|
|||
|
|
@ -45,7 +45,7 @@
|
|||
</a>
|
||||
{{/times}}
|
||||
</div>
|
||||
<a class="slot-label" data-action="toggleArmorMangement" data-tooltip="{{localize 'DAGGERHEART.UI.Tooltip.clickManageArmor'}}">
|
||||
<a class="slot-label" data-action="toggleArmorMangement">
|
||||
<span class="label">{{localize "DAGGERHEART.GENERAL.armorSlots"}}</span>
|
||||
<div class="slot-value-container">
|
||||
<span class="value">{{document.system.armorScore.value}} / {{document.system.armorScore.max}}</span>
|
||||
|
|
@ -64,7 +64,7 @@
|
|||
value='{{document.system.armorScore.value}}'
|
||||
max='{{document.system.armorScore.max}}'
|
||||
></progress>
|
||||
<a class="status-label" data-action="toggleArmorMangement" data-tooltip="{{localize 'DAGGERHEART.UI.Tooltip.clickManageArmor'}}">
|
||||
<a class="status-label" data-action="toggleArmorMangement">
|
||||
<h4>{{localize "DAGGERHEART.GENERAL.armorSlots"}}</h4>
|
||||
<i class="fa-solid fa-gear"></i>
|
||||
</a>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue