2024-05-16 17:57:51 +02:00
|
|
|
if (!this.actor.has(game.i18n.localize("NAME.Daemonic")))
|
|
|
|
return
|
|
|
|
|
|
|
|
let caster = this.effect.sourceActor;
|
|
|
|
if (caster)
|
|
|
|
{
|
|
|
|
let wp = caster.system.characteristics.wp
|
|
|
|
if (this.actor.system.characteristics.wp.value >= wp.value)
|
|
|
|
{
|
2024-05-17 12:46:44 +02:00
|
|
|
this.script.scriptNotification("La cible a une Force Mentale supérieure, aucun effet")
|
2024-05-16 17:57:51 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
this.actor.applyBasicDamage(wp.bonus, { damageType: game.wfrp4e.config.DAMAGE_TYPE.IGNORE_ALL })
|
|
|
|
}
|