Fix various issues
This commit is contained in:
@ -13,10 +13,24 @@
|
||||
<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>
|
||||
<li><strong>BODY : {{bodyValue}}</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>
|
||||
|
||||
|
Reference in New Issue
Block a user