38 lines
1.1 KiB
Handlebars
38 lines
1.1 KiB
Handlebars
<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>
|
|
|
|
<div class="flexcol">
|
|
</div>
|
|
|
|
<div>
|
|
<ul>
|
|
<li>Name : {{title}}</li>
|
|
<li>Damage Effect: {{upperFirst item.system.damageeffect}}</li>
|
|
<li>Damage formula : {{diceFormula}}</li>
|
|
<li><strong>TOTAL : {{result}}</strong></li>
|
|
|
|
{{#if (or (eq item.system.damageeffect "killing") (eq item.system.damageeffect "normal"))}}
|
|
<li><strong>1d3 result + STUNx : {{killingMultiplier}} + {{item.system.stunx}}</strong></li>
|
|
<li><strong>STUN : {{stunValue}}</strong></li>
|
|
<li><strong>BODY : {{bodyValue}}</strong></li>
|
|
{{/if}}
|
|
|
|
{{#if (eq item.system.damageeffect "stunonly")}}
|
|
<li><strong>STUN : {{stunValue}}</strong></li>
|
|
{{/if}}
|
|
|
|
{{#if (eq item.system.damageeffect "bodyonly")}}
|
|
<li><strong>BODY : {{stunValue}}</strong></li>
|
|
{{/if}}
|
|
|
|
</ul>
|
|
</div>
|
|
|
|
</div>
|