Interface StateColorClue

interface StateColorClue {
    giver: PlayerIndex;
    list: readonly CardOrder[];
    negativeList: readonly CardOrder[];
    segment: number;
    target: PlayerIndex;
    type: Color;
    value: 0 | 1 | 2 | 3 | 4 | 5;
}

Hierarchy

  • StateClueBase
    • StateColorClue

Properties

list: readonly CardOrder[]

The cards in the hand that the clue touches.

negativeList: readonly CardOrder[]

The cards in the hand that the clue does not touch.

segment: number
target: PlayerIndex
type: Color
value: 0 | 1 | 2 | 3 | 4 | 5