13 lines
533 B
JavaScript
13 lines
533 B
JavaScript
|
let test = await this.actor.setupSkill(game.i18n.localize("NAME.Endurance"), {skipTargets: true, appendTitle : ` - ${this.effect.name}`, fields : {difficulty: "veasy"}})
|
||
|
await test.roll();
|
||
|
if (test.failed)
|
||
|
{
|
||
|
this.script.scriptNotification("Gained a <strong>Festering Wound</strong>")
|
||
|
let item = await fromUuid("Compendium.wfrp4e-core.items.kKccDTGzWzSXCBOb")
|
||
|
this.actor.createEmbeddedDocuments("Item", [item.toObject()])
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
this.script.scriptNotification("Avoided a <strong>Festering Wound</strong>")
|
||
|
}
|