Manage wounds in fight
This commit is contained in:
9
templates/chat-damage-consequence.html
Normal file
9
templates/chat-damage-consequence.html
Normal file
@ -0,0 +1,9 @@
|
||||
<h4>{{name}} has taken a new {{severity}} wound, due to the {{consequenceName}} consequence !</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>
|
||||
</div>
|
13
templates/chat-damage-taken.html
Normal file
13
templates/chat-damage-taken.html
Normal file
@ -0,0 +1,13 @@
|
||||
<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}}
|
||||
|
||||
</div>
|
Reference in New Issue
Block a user