Interface StateRankClue

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

Hierarchy

  • StateClueBase
    • StateRankClue

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: Rank
value: 1 | 2 | 3 | 4 | 5