10 lines
259 B
JavaScript
10 lines
259 B
JavaScript
let bleeding = this.actor.hasCondition("bleeding")
|
|
if (bleeding)
|
|
{
|
|
this.script.scriptNotification(`Suppression de ${bleeding.conditionValue} états Hémorragiques`)
|
|
bleeding.delete();
|
|
}
|
|
else
|
|
{
|
|
this.script.scriptNotification(`Aucune Hémorragie`)
|
|
} |