Interface Options

interface Options {
    allOrNothing: boolean;
    cardCycle: boolean;
    deckPlays: boolean;
    detrimentalCharacters: boolean;
    emptyClues: boolean;
    maxPlayers?: 3 | 2 | 4 | 5 | 6;
    numPlayers: 2 | 3 | 4 | 5 | 6;
    oneExtraCard: boolean;
    oneLessCard: boolean;
    speedrun: boolean;
    startingPlayer: PlayerIndex;
    tableName?: string;
    timeBase: number;
    timed: boolean;
    timePerTurn: number;
    variantName: string;
}

Hierarchy

Properties

allOrNothing: boolean = ...
cardCycle: boolean = ...
deckPlays: boolean = ...
detrimentalCharacters: boolean = ...
emptyClues: boolean = ...
maxPlayers?: 3 | 2 | 4 | 5 | 6 = ...
numPlayers: 2 | 3 | 4 | 5 | 6 = ...
oneExtraCard: boolean = ...
oneLessCard: boolean = ...
speedrun: boolean = ...
startingPlayer: PlayerIndex = ...

Legacy field for games prior to April 2020.

tableName?: string = ...
timeBase: number = ...
timed: boolean = ...
timePerTurn: number = ...
variantName: string = ...