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>
|
|
|
|
|
|
|
|
<div class="flexcol">
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<ul>
|
2023-06-30 13:14:40 +02:00
|
|
|
<li>Name : {{title}}</li>
|
2023-08-26 22:25:28 +02:00
|
|
|
<li>Damage Effect: {{upperFirst item.system.damageeffect}}</li>
|
2023-05-07 14:03:14 +02:00
|
|
|
<li>Damage formula : {{diceFormula}}</li>
|
2023-08-27 16:21:10 +02:00
|
|
|
<li><strong>Total formula : {{result}}</strong></li>
|
|
|
|
|
|
|
|
{{#if (eq item.system.damageeffect "normal")}}
|
2023-08-26 22:25:28 +02:00
|
|
|
<li><strong>BODY : {{bodyValue}}</strong></li>
|
|
|
|
{{/if}}
|
|
|
|
|
2023-08-27 16:21:10 +02:00
|
|
|
{{#if (eq item.system.damageeffect "killing")}}
|
|
|
|
<li><strong>1d3 result + STUNx : {{killingMultiplier}} + {{item.system.stunx}} = {{add killingMultiplier item.system.stunx}}</strong></li>
|
|
|
|
<li><strong>STUN : {{stunValue}}</strong></li>
|
|
|
|
<li><strong>BODY : {{result}}</strong></li>
|
|
|
|
<li><strong>Penetrating BODY : {{bodyValue}}</strong></li>
|
|
|
|
{{/if}}
|
|
|
|
|
2023-08-26 22:25:28 +02:00
|
|
|
{{#if (eq item.system.damageeffect "stunonly")}}
|
|
|
|
<li><strong>STUN : {{stunValue}}</strong></li>
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
{{#if (eq item.system.damageeffect "bodyonly")}}
|
2023-08-27 16:21:10 +02:00
|
|
|
<li><strong>BODY : {{bodyValue}}</strong></li>
|
2023-08-26 22:25:28 +02:00
|
|
|
{{/if}}
|
|
|
|
|
2023-05-07 14:03:14 +02:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|