Interface ActionCardIdentity

Used to implement the "Slow-Witted" detrimental character.

interface ActionCardIdentity {
    order: CardOrder;
    playerIndex: PlayerIndex;
    rank: -1 | 1 | 2 | 3 | 4 | 5 | 7;
    suitIndex: -1 | 0 | 1 | 2 | 3 | 4 | 5;
    type: "cardIdentity";
}

Properties

order: CardOrder
playerIndex: PlayerIndex
rank: -1 | 1 | 2 | 3 | 4 | 5 | 7

The server scrubs the identity under certain circumstances, which is represented by -1.

suitIndex: -1 | 0 | 1 | 2 | 3 | 4 | 5

The server scrubs the identity under certain circumstances, which is represented by -1.

type: "cardIdentity"