7 lines
495 B
JavaScript
7 lines
495 B
JavaScript
let test = await this.actor.setupCharacteristic("wp", {skipTargets: true, appendTitle : ` - ${this.effect.name}`, fields : {difficulty : "average"}, context : {failure: "1 point de Corruption gagné"}})
|
|
await test.roll();
|
|
if (test.failed && this.actor.type == "character")
|
|
{
|
|
this.actor.update({"system.status.corruption.value" : parseInt(this.actor.status.corruption.value) + 1})
|
|
this.script.message("Gagné un point de Corruption", {whisper : ChatMessage.getWhisperRecipients("GM")})
|
|
} |