Files
wfrp-4e-de/reference_scripts/feMPZhhFeXRtKdKY.js
T
2025-05-10 00:11:46 +02:00

10 lines
280 B
JavaScript

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
{
this.script.scriptNotification("None left!", "error")
}