fvtt-hero-system-6/templates/chat/chat-damage-result.hbs

30 lines
583 B
Handlebars
Raw Normal View History

2023-05-07 14:03:14 +02:00
<div class="chat-message-header">
{{#if actorImg}}
<img class="actor-icon" src="{{actorImg}}" alt="{{alias}}" />
{{/if}}
<h4 class=chat-actor-name>{{alias}}</h4>
</div>
<hr>
{{#if img}}
<div >
<img class="chat-icon" src="{{img}}" alt="{{name}}" />
</div>
{{/if}}
<div class="flexcol">
</div>
<div>
<ul>
2023-06-30 13:14:40 +02:00
<li>Name : {{title}}</li>
2023-05-07 14:03:14 +02:00
<li>Damage formula : {{diceFormula}}</li>
2023-06-30 17:21:11 +02:00
<li><strong>TOTAL : {{result}}</strong></li>
2023-05-07 14:03:14 +02:00
<li><strong>BODY : {{bodyValue}}</strong></li>
</ul>
</div>
</div>