foundryvtt-wh4-lang-fr-fr/reference_scripts/iO2hCDwyQ7v4qrOI.js

10 lines
684 B
JavaScript

if (args.test.options.staunchBleeding) {
if (args.test.result.roll <= game.settings.get("wfrp4e", "automaticSuccess") || args.test.result.roll <= args.test.target) {
let staunch = ~~args.test.result.SL + 1
if (args.test.options.fieldDressing && args.test.result.reversed)
staunch = Math.min(1, Number(args.test.result.SL)) + 1
args.test.result.other.push(`<b>${this.actor.name}</b> removed <b>${staunch}</b> Bleeding conditions from the patient.`)
}
else if (this.actor.characteristics.int.bonus + args.test.result.SL < 0)
args.test.result.other.push(`The patient contracts a @UUID[Compendium.wfrp4e-core.items.Item.1hQuVFZt9QnnbWzg]{Minor Infection}.`)
}