BOL : Fix damage error, rework roll dialog and new damage targetting

This commit is contained in:
2026-03-16 20:16:58 +01:00
parent 7adc1b3f07
commit a549262d25
121 changed files with 538 additions and 408 deletions

View File

@@ -21,5 +21,16 @@
<div class="actions-section" id="{{applyId}}">
<button class="chat-damage-apply" data-attack-id="{{id}}">{{localize "BOL.chat.applydamagetotarget"}}</button>
</div>
{{else}}
{{#if potentialTargets}}
<div class="actions-section damage-target-select" id="{{applyId}}">
<div class="damage-target-select-label">{{localize "BOL.chat.selecttarget"}}</div>
{{#each potentialTargets}}
<button class="chat-target-select" data-attack-id="{{../id}}" data-token-id="{{this.id}}" data-actor-id="{{this.actorId}}">
<img src="{{this.img}}" class="damage-target-icon" alt="{{this.name}}"/>{{this.name}}
</button>
{{/each}}
</div>
{{/if}}
{{/if}}
</div>