Foreign Data
The Foreign Data Data Model describes the properties for a card in alternate languages.
- Parent model: Card (Atomic), Card (Deck), Card (Set)
- Parent property:
foreignData
TypeScript Model
Show/Hide Model
TypeScript
export type ForeignData = {
faceName?: string;
flavorText?: string;
language: string;
multiverseId?: number;
name: string;
text?: string;
type?: string;
};
Model Properties
faceName optional
The foreign name on the face of the card.
- Type:
string
- Introduced:
v5.0.1
flavorText optional
The foreign flavor text of the card.
- Type:
string
- Introduced:
v4.0.0
language
The foreign language of card.
- Type:
string
- Introduced:
v4.0.0
multiverseId optional
The foreign multiverse identifier of the card.
- Type:
number
- Introduced:
v4.0.0
name
The foreign name of the card.
- Type:
string
- Introduced:
v4.0.0
text optional
The foreign text of the card.
- Type:
string
- Introduced:
v4.0.0
type optional
The foreign type of the card, including any supertypes and subtypesa and are given a
-
delimiter if appropriate.
- Type:
string
- Introduced:
v4.0.0