20 lines
1.1 KiB
Handlebars
20 lines
1.1 KiB
Handlebars
<img class="chat-icon" src="{{defender.img}}" alt="{{defender.name}}"/>
|
|
{{localize "BOL.chat.hurttitle" name=defender.name damageTotal=damageTotal}}
|
|
|
|
{{#if damagesIgnoresArmor}}
|
|
<br>{{localize "BOL.chat.armordefault"}}
|
|
{{/if}}
|
|
|
|
<button class="damage-handling" data-defense-mode="damage-with-armor" data-attack-id="{{attackId}}">{{localize "BOL.chat.witharmor"}}</button>
|
|
<button class="damage-handling" data-defense-mode="damage-without-armor" data-attack--id="{{attackId}}">{{localize "BOL.chat.withoutarmor"}}</button>
|
|
|
|
{{#if defender.system.resources.hero.value}}
|
|
<button class="damage-handling" data-defense-mode="hero-reduce-damage" data-attack-id="{{attackId}}">{{localize "BOL.chat.shakeoff"}}</button>
|
|
|
|
{{#each defenderWeapons as |weapon idx|}}
|
|
<button class="damage-handling" data-defense-mode="hero-in-extremis" data-attack-id="{{@root.attackId}}" data-weapon-id="{{weapon._id}}">{{localize "BOL.chat.splinteredshield" name=weapon.name}}</button>
|
|
{{/each}}
|
|
|
|
<button class="damage-handling" data-defense-mode="damage-not-applied" data-attack-id="{{attackId}}">{{localize "BOL.chat.nodamage"}}</button>
|
|
|
|
{{/if}} |