Start a Combat encounter, add the chosen tokens as combatants, and begin it. With no tokenUuids, every token on the active scene is enrolled.

interface StartCombatDrive {
    kind: "start-combat";
    rollInitiative?: boolean;
    tokenUuids?: string[];
}

Properties

kind: "start-combat"
rollInitiative?: boolean

Whether to roll initiative for all as part of starting. Defaults to false.

tokenUuids?: string[]

UUIDs of the TokenDocuments to enroll; defaults to all scene tokens.