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
Toggle Model
TypeScript
export type ForeignData = {
faceName?: string;
flavorText?: string;
identifiers: Identifiers;
language: string;
name: string;
text?: string;
type?: string;
};
Model Properties
faceName O
The foreign name on the face of the card.
- Type:
string
- Introduced:
v5.0.1
flavorText O
The foreign flavor text of the card.
- Type:
string
- Introduced:
v4.0.0
identifiers
The identifiers associated to a card. See the Identifiers Data Model.
- Type:
Identifiers
- Introduced:
v5.2.2
language
The foreign language of card.
- Type:
string
- Introduced:
v4.0.0
name
The foreign name of the card.
- Type:
string
- Introduced:
v4.0.0
text O
The foreign text of the card.
- Type:
string
- Introduced:
v4.0.0
type O
The foreign type of the card, including any supertypes and subtypes, and are given a
-
delimiter if appropriate.
- Type:
string
- Introduced:
v4.0.0