foundryvtt-wh4-lang-fr-fr/reference_scripts/ft0LaRWZT5WtnptP.js

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();