Interface ActionClue

interface ActionClue {
    clue: MsgClue;
    giver: PlayerIndex;
    ignoreNegative: boolean;
    list: readonly CardOrder[];
    target: PlayerIndex;
    type: "clue";
}

Properties

clue: MsgClue

The player index of the person giving the clue.

ignoreNegative: boolean
list: readonly CardOrder[]

The card orders that were touched by this clue.

target: PlayerIndex

The player index of the person being clued.

type: "clue"