Related Cards
The Related Cards Data Model describes the properties of a card that has relations to other cards.
- Parent model: Card (Atomic), Card (Deck), Card (Set), Card (Token)
- Parent property:
relatedCards
TypeScript Model
Show/Hide Model
TypeScript
export type RelatedCards = {
reverseRelated?: string[];
spellbook?: string[];
};
Model Properties
reverseRelated optional
A list of card names associated to a card, such as "meld" cards and token creation.
- Type:
string[]
- Introduced:
v5.2.1
spellbook optional
A list of card names associated to a card's Spellbook mechanic.
- Type:
string[]
- Introduced:
v5.2.1