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

15 lines
440 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-01-23 09:25:09 +01:00
<h3><strong>Dommages de {{weapon.name}} : {{damageRoll.total}}</strong></h3>
2022-03-27 22:56:43 +02:00
{{#if defender}}
<h3><strong>Cible : {{defender.name}}</strong></h3>
{{/if}}
2022-01-17 23:50:57 +01:00
2022-03-27 22:56:43 +02:00
<div class="actions-section">
{{#if target}}
<div id="{{applyId}}">
<button class="chat-damage-apply" data-attack-id="{{id}}">Appliquer les dommages à la cible</button>
</div>
<br>
{{/if}}
2022-01-17 23:50:57 +01:00
</div>