This trigger runs when the owner starts their turn in combat.
Key
startTurn
Arguments
args.combat
- The Combat this Actor is in.
Examples
Test against Stunned
Usage: Roll a Test to resist being Stunned.
let test = await this.actor.setupSkill(game.i18n.localize("NAME.Cool"), {fields : {difficulty : "difficult"}, appendTitle : ` - ${this.effect.name}`})
await test.roll();
if (test.failed)
{
this.actor.addCondition("stunned");
}