2024-05-16 17:57:51 +02:00
|
|
|
if (this.item.system.quantity.value)
|
|
|
|
{
|
|
|
|
this.item.system.reduceQuantity();
|
|
|
|
let actor = Array.from(game.user.targets)[0]?.actor || this.actor;
|
|
|
|
actor.applyEffect({effectUuids : this.item.effects.contents[0]?.uuid})
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2024-05-17 01:07:37 +02:00
|
|
|
this.script.scriptNotification("Aucun restant!", "error")
|
2024-05-16 17:57:51 +02:00
|
|
|
}
|