A newly created combatant awaiting group assignment.

interface SeedingCombatant {
    desiredName: undefined | null | string;
    hasGroup: boolean;
    id: string;
}

Properties

desiredName: undefined | null | string

The group name requested via the token flag (may be empty/undefined).

hasGroup: boolean

True if the combatant already belongs to a group (skip it).

id: string

The combatant's id.