foundry-dsa41-game/src/templates/actor/character/standalone/bagpack.hbs

21 lines
669 B
Handlebars

<div>
<div class="resource">
<span class="fill {{#if (gte this.carryingpercentage 75)}}danger{{/if}}"
style="width: {{this.carryingpercentage}}%"></span>
</div>
<div class="coinage">
<label>{{currency this.wealth}}</label>
</div>
<div class="buttons">
<button type="button" data-action="newItem"><i class="fa-solid fa-sack" data-tooltip="Neuer Gegenstand"></i></button>
<button type="button" data-action="openItemBrowser"><i class="fa-solid fa-store" data-tooltip="Einkaufen"></i></button>
</div>
{{> "systems/DSA_4-1/templates/ui/partial-equipment-button.hbs" equipments}}
</div>