13 lines
367 B
JavaScript
13 lines
367 B
JavaScript
let advantage = this.actor.system.status.advantage.value;
|
|
if (advantage > 0)
|
|
{
|
|
await this.actor.setAdvantage(0);
|
|
this.script.scriptNotification("Advantage Subtracted")
|
|
}
|
|
else
|
|
{
|
|
return this.script.scriptNotification("Not enough Advantage!", "error")
|
|
}
|
|
|
|
let test = await this.actor.setupTrait(this.item, {fields : {slBonus : advantage}})
|
|
await test.roll(); |