Add all systems effects scripts
This commit is contained in:
29
scripts/g07HI7vyqiFXPB0o.js
Normal file
29
scripts/g07HI7vyqiFXPB0o.js
Normal file
@ -0,0 +1,29 @@
|
||||
// A Drinker must take a Difficult (-10) Endurance Test.
|
||||
let test = await this.actor.setupSkill(game.i18n.localize("NAME.Endurance"), {skipTargets: true, appendTitle : ` - ${this.effect.name}`, fields: {difficulty: "difficult"}})
|
||||
await test.roll()
|
||||
// If they fail, they acquire 2 Poisoned Conditions.
|
||||
if (test.failed)
|
||||
{
|
||||
this.actor.addCondition("poisoned", 2)
|
||||
this.script.scriptMessage(`<p><strong>${this.actor.prototypeToken.name}</strong> has gained 2 @Condition[Poisoned] Conditions.</p>
|
||||
<p>Any being with the Bestial Creature Trait that bites them and takes damage will not bite them again during a hostile encounter, though the creature may still attack them in other ways.</p>`,
|
||||
{
|
||||
whisper: ChatMessage.getWhisperRecipients("GM"),
|
||||
blind: true
|
||||
})
|
||||
}
|
||||
// If they succeed, for a number of rounds equal to 3+ their SL, they have the Corrosive Blood Creature Trait.
|
||||
else if (test.succeeded)
|
||||
{
|
||||
// Don't attempt to add Corrosive Blood if actor already has it
|
||||
const hasCorrosiveBlood = this.actor.has("Corrosive Blood")
|
||||
if (hasCorrosiveBlood !== undefined) return
|
||||
|
||||
let item = await fromUuid("Compendium.wfrp4e-core.items.M5QSWOYt2Rbv2yxW")
|
||||
let data = item.toObject()
|
||||
this.actor.createEmbeddedDocuments("Item", [data], {fromEffect: this.effect.id})
|
||||
|
||||
const duration = 3 + parseInt(test.result.SL)
|
||||
this.script.scriptMessage(`<p><strong>${this.actor.prototypeToken.name}</strong> gains the Corrosive Blood Trait for ${duration} rounds.</p>`,
|
||||
{ whisper: ChatMessage.getWhisperRecipients("GM"), blind: true })
|
||||
}
|
Reference in New Issue
Block a user