mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-04-25 00:43: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",
|
"immune": "Immune",
|
||||||
"middleClick": "[Middle Click] Keep tooltip view",
|
"middleClick": "[Middle Click] Keep tooltip view",
|
||||||
"tokenSize": "The token size used on the canvas",
|
"tokenSize": "The token size used on the canvas",
|
||||||
"previewTokenHelp": "Left-click to place, right-click to cancel",
|
"previewTokenHelp": "Left-click to place, right-click to cancel"
|
||||||
"clickManageArmor": "Click to manage armor equipments"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -964,7 +964,7 @@ export default class CharacterSheet extends DHBaseActorSheet {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
if (armorSources.length <= 1) return;
|
if (!armorSources.length) return;
|
||||||
|
|
||||||
const useResourcePips = game.settings.get(
|
const useResourcePips = game.settings.get(
|
||||||
CONFIG.DH.id,
|
CONFIG.DH.id,
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,7 @@
|
||||||
</a>
|
</a>
|
||||||
{{/times}}
|
{{/times}}
|
||||||
</div>
|
</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>
|
<span class="label">{{localize "DAGGERHEART.GENERAL.armorSlots"}}</span>
|
||||||
<div class="slot-value-container">
|
<div class="slot-value-container">
|
||||||
<span class="value">{{document.system.armorScore.value}} / {{document.system.armorScore.max}}</span>
|
<span class="value">{{document.system.armorScore.value}} / {{document.system.armorScore.max}}</span>
|
||||||
|
|
@ -64,7 +64,7 @@
|
||||||
value='{{document.system.armorScore.value}}'
|
value='{{document.system.armorScore.value}}'
|
||||||
max='{{document.system.armorScore.max}}'
|
max='{{document.system.armorScore.max}}'
|
||||||
></progress>
|
></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>
|
<h4>{{localize "DAGGERHEART.GENERAL.armorSlots"}}</h4>
|
||||||
<i class="fa-solid fa-gear"></i>
|
<i class="fa-solid fa-gear"></i>
|
||||||
</a>
|
</a>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue