Neuanfang mit französischem Modul

This commit is contained in:
2025-05-05 23:25:00 +02:00
parent cf24ef97df
commit 3f74b8dfdd
3135 changed files with 38383 additions and 93206 deletions
-16
View File
@@ -1,16 +0,0 @@
if (args.test.options.healWounds) {
if (args.test.succeeded)
{
let wounds = this.actor.characteristics.int.bonus + Number(args.test.result.SL)
if (args.test.options.fieldDressing && args.test.result.reversed)
{
wounds = this.actor.characteristics.int.bonus + Math.min(1, Number(args.test.result.SL))
}
args.test.result.woundsHealed = wounds
args.test.result.other.push(`<b>${this.actor.name}</b> healed <b>${wounds}</b> wounds of the patient.`)
}
else if (this.actor.characteristics.int.bonus + Number(args.test.result.SL) < 0)
{
args.test.result.other.push(`The patient contracts a @UUID[Compendium.wfrp4e-core.items.Item.1hQuVFZt9QnnbWzg]{Minor Infection}.`)
}
}