bol/templates/chat/rolls/damage-roll-card.hbs

21 lines
639 B
Handlebars
Raw Normal View History

2021-12-25 23:26:27 +01:00
<img class="chat-icon" src="{{weapon.img}}" alt="{{weapon.name}}"/>
2022-05-11 19:29:32 +02:00
<h3><strong>{{localize "BOL.chat.damageresult" name=weapon.name total=damageRoll.total}}</strong></h3>
2022-03-27 22:56:43 +02:00
{{#if defender}}
2022-05-11 19:29:32 +02:00
<h3><strong>{{localize "BOL.chat.damagetarget" target=defender.name}}</strong></h3>
2022-03-27 22:56:43 +02:00
{{/if}}
2022-01-17 23:50:57 +01:00
2022-11-23 15:27:08 +01:00
{{#if weapon.system.properties.damageReroll1}}
<div>
<label>{{localize "BOL.chat.weaponreroll1"}}</label>
</div>
{{/if}}
2022-03-27 22:56:43 +02:00
<div class="actions-section">
2022-04-08 23:42:01 +02:00
{{#if targetId}}
2022-03-27 22:56:43 +02:00
<div id="{{applyId}}">
2022-05-11 19:29:32 +02:00
<button class="chat-damage-apply" data-attack-id="{{id}}">{{localize "BOL.chat.applydamagetotarget"}}</button>
2022-03-27 22:56:43 +02:00
</div>
<br>
{{/if}}
2022-01-17 23:50:57 +01:00
</div>