foundryvtt-shadows-over-sol/templates/chat-damage-taken.html

17 lines
707 B
HTML
Raw Normal View History

2021-02-15 23:21:53 +01:00
<h4>{{defenderName}} has taken damages !</h4>
<div class="flexcol">
<label>Light Wounds : {{wounds.light}}</label>
<label>Moderate Wounds : {{wounds.moderate}}</label>
<label>Severe Wounds : {{wounds.severe}}</label>
<label>Critical Wounds : {{wounds.critical}}</label>
<label>Current wounds value : {{currentWounds}}</label>
<label>Total wounds : {{totalWounds}}</label>
{{#if isBleeding}}
<label>{{defenderName}} is bleeding with severity {{isBleeding}}. He will have a new {{isBleeding}} wound at the end of the round !</label>
{{/if}}
2021-03-13 22:33:24 +01:00
{{#if isStun}}
<label>{{defenderName}} is has the Stun consequence at {{isStun}} severity !</label>
{{/if}}
2021-02-15 23:21:53 +01:00
</div>