knitr::opts_chunk$set(collapse = TRUE, comment = "#>") library(scryr) glimpse <- purrr::partial(dplyr::glimpse, width = 72)
The layout
column categorizes the arrangement of card parts, faces, and other
bounded regions on cards. The layout can be used to programmatically determine
which other properties on a card you can expect.
Specifically:
split
, flip
, transform
, and double_faced_token
will always have a card_faces
column describing the distinct faces.meld
will always have a all_parts
column
pointing to the other meld parts.| Layout | Description |
| ---------------------- | -------------------------------------------------- |
| normal
| A standard Magic card with one face |
| split
| A split-faced card |
| flip
| Cards that invert vertically with the flip keyword |
| transform
| Double-sided cards that transform |
| modal_dfc
| Double-sided cards that can be played either-side |
| meld
| Cards with meld parts printed on the back |
| leveler
| Cards with Level Up |
| class
| Class-type enchantment cards |
| saga
| Saga-type cards |
| adventure
| Cards with an Adventure spell part |
| planar
| Plane and Phenomenon-type cards |
| scheme
| Scheme-type cards |
| vanguard
| Vanguard-type cards |
| token
| Token cards |
| double_faced_token
| Tokens with another token printed on the back |
| emblem
| Emblem cards |
| augment
| Cards with Augment |
| host
| Host-type cards |
| art_series
| Art Series collectable double-faced cards |
| reversible_card
| A Magic card with two sides that are unrelated |
Magic cards can include multiple faces on a single piece of card stock.
Scryfall includes information about each of these card faces using the
card_faces
column. Please note the following types of multi-face cards and how
Scryfall will describe them:
Split cards (Comp. rules term): Split cards are sorceries or instant cards that include two faces and the caster can choose which face to cast. The back of a split card is the normal Magic back.
glimpse(scry_card("0f279560-7e9f-4a6d-9fd6-6c8c6bd94a1b"))
Flip cards (Comp. rules term): Flip cards have two parts of a permanent printed vertically on one side of the card. During play, an ability on the card causes the permanent to flip (rotate 180°) to the other side. The back of a flip card is the normal Magic back.
glimpse(scry_card("0b61d772-2d8b-4acf-9dd2-b2e8b03538c8"))
Double-faced cards (Comp. rules term): These cards have two faces on different sides of the cardstock that are related to each other. The whole card is a single legal or deckbuilding object. Double-faced cards can either be transforming or modal.
Transforming double-faced cards (Comp. rules term): These cards can either
transform after entering the battlefield, or can be put onto the battlefield
already transformed. Scryfall will use the card_faces
column to describe the
two different transformed modes of the card. These cards have their layout
set
to "transform".
glimpse(scry_card("b37aa12c-a6b3-4cf8-b5a4-0a999ff12d02"))
Modal double-faced cards (Comp. rules term): Modal DFCs may be cast or
played as either half of the card. Scryfall will use the card_faces
column to
describe the two different modes of the card. These cards have their layout
set to "modal_dfc".
glimpse(scry_card("ba09360a-067e-48a5-bdc5-a19fd066a785"))
Reversible cards (casual term): This term is used by both Scryfall and
WotC to describe a piece of cardstock with two distinct Magic cards or tokens
printed on opposite sides. The two halves of the card are not related to each
other in any way and are treated as two separate objects for gameplay or
deckbuilding. The overall card will have its layout
set to "reversible_card",
while the individual card_face
objects will have their own layout
columns
describing the distinct printings on both sides.
glimpse(scry_card("3e3f0bcd-0796-494d-bf51-94b33c1671e9"))
Multi-faced cards (casual term): This term has no rules meaning and is
used by Scryfall to describe any object with the nested card_faces
property.
Double-sided cards (casual term): This term has no rules meaning and is used only casually to refer to any cards with gameplay information on both sides.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.