Skip to content

Foreign Data

The Foreign Data Data Model describes the properties for a card in alternate languages.

TypeScript Model

Toggle Model
TypeScript
export type ForeignData = {
  faceName?: string;
  flavorText?: string;
  language: string;
  multiverseId?: number;
  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

language

The foreign language of card.

  • Type: string
  • Introduced: v4.0.0

multiverseId O

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 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