SR6_Roll20_Sheet/components/_healthBox.pug
2022-09-30 15:15:24 +02:00

14 lines
No EOL
620 B
Text

.healthWrapper
include ./_healthBoxContainer
h3 Stun
h3 Physical
h3 Overflow
+healthContainer(30).stun //Will/2 + 8
+healthContainer(30).physical //Body/2 + 8
+healthContainer(30).overflow //Body*2
.stunInfo
input(type="number" name="attr_physicalHealth" disabled="true" value="ceil(@{abilitypool_wil}/2)+8-@{stunWounds}")
.physicalInfo
input(type="number" name="attr_physicalHealth" disabled="true" value="ceil(@{abilitypool_bod}/2)+8-@{physicalWounds}")
.overflowInfo
input(type="number" name="attr_physicalHealth" disabled="true" value="ceil(@{abilitypool_wil}/2)+8-@{stunWounds}")