13 lines
346 B
JavaScript
13 lines
346 B
JavaScript
let advantage = this.actor.system.status.advantage.value;
|
|
if (advantage > 0)
|
|
{
|
|
await this.actor.setAdvantage(0);
|
|
this.script.notification("Avantage retiré")
|
|
}
|
|
else
|
|
{
|
|
return this.script.notification("Avantage retiré", "error")
|
|
}
|
|
|
|
let test = await this.actor.setupTrait(this.item, {fields : {slBonus : advantage}})
|
|
await test.roll(); |