2024-05-16 17:57:51 +02:00
|
|
|
let bleeding = this.actor.hasCondition("bleeding")
|
|
|
|
if (bleeding)
|
|
|
|
{
|
2024-05-17 01:07:37 +02:00
|
|
|
this.script.scriptNotification(`Suppression de ${bleeding.conditionValue} états Hémorragiques`)
|
2024-05-16 17:57:51 +02:00
|
|
|
bleeding.delete();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2024-05-17 01:07:37 +02:00
|
|
|
this.script.scriptNotification(`Aucune Hémorragie`)
|
2024-05-16 17:57:51 +02:00
|
|
|
}
|