This commit is contained in:
2025-05-02 12:24:44 +02:00
commit 39e925cc1b
3238 changed files with 110472 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
if (!this.actor.effects.find(e => e.isCondition))
{
return this.script.scriptNotification("Aucun état sur cet Acteur")
}
let choice = await ItemDialog.create(this.actor.effects.filter(i => i.isCondition), 1, "Choisissez un état")
if (choice[0])
{
this.actor.removeCondition(choice[0].conditionId)
}