foundryvtt-wh4-lang-fr-fr/scripts/hmk8zV1LTElHUI8A.js

8 lines
313 B
JavaScript
Raw Normal View History

let msg = `<b>${this.actor.prototypeToken.name}</b> perd 1 Blessure.<br>`
2024-05-16 17:57:51 +02:00
if (this.actor.status.wounds.value <= 1)
{
msg += `<b>${this.actor.prototypeToken.name}</b> tombe Inconscient.<br>`
2024-05-16 17:57:51 +02:00
await this.actor.addCondition("unconscious")
}
this.script.scriptMessage(msg)
this.actor.modifyWounds(-1)