2024-05-16 17:57:51 +02:00
|
|
|
let stunned = this.actor.hasCondition("stunned")
|
|
|
|
if (stunned)
|
|
|
|
{
|
2024-05-17 12:46:44 +02:00
|
|
|
this.script.scriptNotification(`Suppression de 1 état Assomé`)
|
2024-05-16 17:57:51 +02:00
|
|
|
this.actor.removeCondition("stunned");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2024-05-17 12:46:44 +02:00
|
|
|
this.script.scriptNotification(`Aucun état Assomé`)
|
2024-05-16 17:57:51 +02:00
|
|
|
}
|