7 lines
183 B
JavaScript
7 lines
183 B
JavaScript
// Any attack with such ammunition which inflicts at least one Wound,
|
|
// also inflicts one Bleeding Condition.
|
|
|
|
if (args.totalWoundLoss > 0) {
|
|
args.actor.addCondition("bleeding")
|
|
}
|