2024-10-08 20:52:09 +02:00
|
|
|
if (this.actor.has("Mort-vivant") && this.actor.has("Ethereal"))
|
2024-05-16 17:57:51 +02:00
|
|
|
{
|
|
|
|
this.actor.setupSkill(game.i18n.localize("NAME.Cool"), {skipTargets: true, appendTitle : " - " + this.effect.name}).then(async test => {
|
|
|
|
await test.roll();
|
|
|
|
if(test.failed)
|
|
|
|
this.actor.addCondition("stunned")
|
|
|
|
})
|
|
|
|
}
|